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

#use diagnostics;
#use strict;
#use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK @important_types @important_types2 @fields2save);

@ISA = qw(Exporter);
%EXPORT_TAGS = (
    types => [ qw(type2name type2fs name2type fs2type isExtended isExt2 isReiserfs isTrueFS isSwap isDos isWin isFat isSunOS isOtherAvailableFS isPrimary isNfs isSupermount isLVM isRAID isMDRAID isLVMBased isHFS isNT isMountableRW isNonMountable isApplePartMap isLoopback isApple isAppleBootstrap) ],
);
@EXPORT_OK = map { @$_ } values %EXPORT_TAGS;


use common qw(:common :system :functional);
use partition_table_raw;
use log;

if (arch() =~ /ppc/) {
    @important_types = ('Linux native', 'Linux swap', 'Apple HFS Partition', 'Apple Bootstrap');
} else {
	@important_types = ('Linux native', 'Linux swap', if_(arch() =~ /i.86/, 'ReiserFS', 'DOS FAT16', 'Win98 FAT32'));
}
@important_types2 = ('Linux RAID', 'Linux Logical Volume Manager partition');

@fields2save = qw(primary extended totalsectors isDirty needKernelReread);

@bad_types = ('Empty', 'DOS 3.3+ Extended Partition', 'Win95: Extended partition, LBA-mapped', 'Linux extended partition');

my %types = (
  0x0 => 'Empty',
arch() =~ /^ppc/ ? (
  0x401	=> 'Apple Partition',
  0x401	=> 'Apple Bootstrap',
  0x402	=> 'Apple HFS Partition',
) : arch() =~ /^i.86/ ? (
  0x183 => 'ReiserFS',
) : arch() =~ /^sparc/ ? (
  0x1 => 'SunOS boot',
  0x2 => 'SunOS root',
  0x3 => 'SunOS swap',
  0x4 => 'SunOS usr',
  0x5 => 'Whole disk',
  0x6 => 'SunOS stand',
  0x7 => 'SunOS var',
  0x8 => 'SunOS home',
) : (
  0x1 => 'DOS 12-bit FAT',
  0x2 => 'XENIX root',
  0x3 => 'XENIX /usr',
  0x4 => 'DOS 16-bit FAT (up to 32M)',
  0x5 => 'DOS 3.3+ Extended Partition',
  0x6 => 'DOS FAT16',
  0x7 => 'NTFS (or HPFS)',
  0x8 => 'OS/2 (v1.0-1.3 only) / AIX boot partition / SplitDrive / Commodore DOS / DELL partition spanning multiple drives / QNX 1.x and 2.x ("qny")',
),
  0x9 => 'AIX data partition / Coherent filesystem / QNX 1.x and 2.x ("qnz")',
  0xa => 'OS/2 Boot Manager / Coherent swap partition / OPUS',
  0xb => 'Win98 FAT32',
  0xc => 'Win98 FAT32, LBA-mapped',
  0xe => 'Win95: DOS 16-bit FAT, LBA-mapped',
  0xf => 'Win95: Extended partition, LBA-mapped',
  0x10 => 'OPUS (?)',
  0x11 => 'Hidden DOS 12-bit FAT',
  0x12 => 'Compaq/HP config partition',
  0x14 => 'Hidden DOS 16-bit FAT <32M',
  0x16 => 'Hidden DOS 16-bit FAT >=32M',
  0x17 => 'Hidden IFS (e.g., HPFS)',
  0x18 => 'AST Windows swapfile',
  0x1b => 'Hidden WIN95 OSR2 32-bit FAT',
  0x1c => 'Hidden WIN95 OSR2 32-bit FAT, LBA-mapped',
  0x1e => 'Hidden FAT95',
  0x22 => 'Used for Oxygen Extended Partition Table by ekstazya@sprint.ca.',
  0x24 => 'NEC DOS 3.x',
  0x38 => 'THEOS ver 3.2 2gb partition',
  0x39 => 'THEOS ver 4 spanned partition',
  0x3a => 'THEOS ver 4 4gb partition',
  0x3b => 'THEOS ver 4 extended partition',
  0x3c => 'PartitionMagic recovery partition',
  0x40 => 'Venix 80286',
  0x41 => 'Linux/MINIX (sharing disk with DRDOS) / Personal RISC Boot / PPC PReP (Power PC Reference Platform) Boot',
  0x42 => 'Linux swap (sharing disk with DRDOS) / SFS (Secure Filesystem) / W2K marker',
  0x43 => 'Linux native (sharing disk with DRDOS)',
  0x45 => 'EUMEL/Elan',
  0x46 => 'EUMEL/Elan 0x46',
  0x47 => 'EUMEL/Elan 0x47',
  0x48 => 'EUMEL/Elan 0x48',
  0x4d => 'QNX4.x',
  0x4e => 'QNX4.x 2nd part',
  0x4f => 'QNX4.x 3rd part / Oberon partition',
  0x50 => 'OnTrack Disk Manager (older versions) RO',
  0x51 => 'OnTrack Disk Manager RW (DM6 Aux1) / Novell',
  0x52 => 'CP/M / Microport SysV/AT',
  0x53 => 'Disk Manager 6.0 Aux3',
  0x54 => 'Disk Manager 6.0 Dynamic Drive Overlay',
  0x55 => 'EZ-Drive',
  0x56 => 'Golden Bow VFeature Partitioned Volume. / DM converted to EZ-BIOS',
  0x57 => 'DrivePro',
  0x5c => 'Priam EDisk',
  0x61 => 'SpeedStor',
  0x63 => 'Unix System V (SCO, ISC Unix, UnixWare, ...), Mach, GNU Hurd',
  0x64 => 'PC-ARMOUR protected partition / Novell Netware 2.xx',
  0x65 => 'Novell Netware 3.xx or 4.xx',
  0x67 => 'Novell',
  0x68 => 'Novell 0x68',
  0x69 => 'Novell 0x69',
  0x70 => 'DiskSecure Multi-Boot',
  0x75 => 'IBM PC/IX',
  0x80 => 'MINIX until 1.4a',
  0x81 => 'MINIX since 1.4b, early Linux / Mitac disk manager',
  0x82 => 'Linux swap',
  0x83 => 'Linux native',
  0x84 => 'OS/2 hidden C: drive / Hibernation partition',
  0x85 => 'Linux extended partition',
  0x86 => 'Old Linux RAID partition superblock / NTFS volume set',
  0x87 => 'NTFS volume set',
  0x8a => 'Linux Kernel Partition (used by AiR-BOOT)',
  0x8e => 'Linux Logical Volume Manager partition',
  0x93 => 'Amoeba',
  0x94 => 'Amoeba bad block table',
  0x99 => 'DCE376 logical drive',
  0xa0 => 'IBM Thinkpad hibernation partition / Phoenix NoteBIOS Power Management "Save-to-Disk" partition',
  0xa5 => 'BSD/386, 386BSD, NetBSD, FreeBSD',
  0xa6 => 'OpenBSD',
  0xa7 => 'NEXTSTEP',
  0xa9 => 'NetBSD',
  0xaa => 'Olivetti Fat 12 1.44Mb Service Partition',
  0xb7 => 'BSDI filesystem',
  0xb8 => 'BSDI swap partition',
  0xbe => 'Solaris boot partition',
  0xc0 => 'CTOS / REAL/32 secure small partition',
  0xc1 => 'DRDOS/secured (FAT-12)',
  0xc4 => 'DRDOS/secured (FAT-16, < 32M)',
  0xc6 => 'DRDOS/secured (FAT-16, >= 32M) / Windows NT corrupted FAT16 volume/stripe set',
  0xc7 => 'Windows NT corrupted NTFS volume/stripe set / Syrinx boot',
  0xcb => 'reserved for DRDOS/secured (FAT32)',
  0xcc => 'reserved for DRDOS/secured (FAT32, LBA)',
  0xcd => 'CTOS Memdump?',
  0xce => 'reserved for DRDOS/secured (FAT16, LBA)',
  0xd0 => 'REAL/32 secure big partition',
  0xd1 => 'Old Multiuser DOS secured FAT12',
  0xd4 => 'Old Multiuser DOS secured FAT16 <32M',
  0xd5 => 'Old Multiuser DOS secured extended partition',
  0xd6 => 'Old Multiuser DOS secured FAT16 >=32M',
  0xd8 => 'CP/M-86',
msgid "Password for user"
msgstr "Password"
-#: authentication.pm:118
+#: authentication.pm:118 standalone/drakroam:46
#, c-format
msgid "Encryption"
msgstr "Cifradûre"
@@ -1579,16 +1584,6 @@ msgstr ""
msgid "Domain Admin Password"
msgstr ""
-#: authentication.pm:155
-#, c-format
-msgid "Use Idmap for store UID/SID "
-msgstr ""
-
-#: authentication.pm:156
-#, fuzzy, c-format
-msgid "Default Idmap "
-msgstr "Predefinît"
-
#: authentication.pm:170
#, c-format
msgid "Set administrator (root) password and network authentication methods"
@@ -1615,7 +1610,7 @@ msgstr ""
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: authentication.pm:188 network/netconnect.pm:308 network/netconnect.pm:566
+#: authentication.pm:188 network/netconnect.pm:306 network/netconnect.pm:564
#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
#, c-format
msgid "Authentication"
@@ -1627,7 +1622,7 @@ 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:765
+#: bootloader.pm:731
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1637,56 +1632,56 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:865
+#: bootloader.pm:871
#, c-format
msgid "LILO with graphical menu"
msgstr "LILO cun menu grafic"
-#: bootloader.pm:866
+#: bootloader.pm:872
#, c-format
msgid "LILO with text menu"
msgstr "LILO cun menu di test"
-#: bootloader.pm:867
+#: bootloader.pm:873
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:868
+#: bootloader.pm:874
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:869
+#: bootloader.pm:875
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:947
+#: bootloader.pm:953
#, c-format
msgid "not enough room in /boot"
msgstr "no son a vonde stanziis in /boot"
-#: bootloader.pm:1433
+#: bootloader.pm:1442
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:1473
+#: bootloader.pm:1482
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:1486
+#: bootloader.pm:1495
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:1487
+#: bootloader.pm:1496
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1726,12 +1721,12 @@ msgstr "1 minût"
msgid "%d seconds"
msgstr "%d seconts"
-#: common.pm:253
+#: common.pm:255
#, c-format
msgid "kdesu missing"
msgstr "al mancje kdesu"
-#: common.pm:256
+#: common.pm:258
#, c-format
msgid "consolehelper missing"
msgstr "al mancje consolehelper"
@@ -2016,7 +2011,7 @@ msgstr ""
msgid "Please click on a partition"
msgstr "Par plasè frache su une partizion"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:487
+#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:460
#: standalone/drakbackup:2952 standalone/drakbackup:3012
#, c-format
msgid "Details"
@@ -2147,7 +2142,7 @@ msgstr "Jessî cence scrivi te tabele des partizions?"
msgid "Do you want to save /etc/fstab modifications"
msgstr "Vuelistu salvâ les modifichis a /etc/fstab"
-#: diskdrake/interactive.pm:292 install_steps_interactive.pm:332
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:340
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
@@ -2780,8 +2775,8 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr "Les clâfs di cifradure no corispuindin"
-#: diskdrake/interactive.pm:1329 network/netconnect.pm:1018
-#: standalone/drakconnect:419
+#: diskdrake/interactive.pm:1329 network/netconnect.pm:1016
+#: standalone/drakconnect:419 standalone/drakroam:112
#, c-format
msgid "Encryption key"
msgstr "Clâf di cifradure"
@@ -2850,7 +2845,7 @@ msgstr "Cîr gnûfs server"
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Il pachet %s al à di sedi instalât. Vuelistu instalâlu?"
-#: do_pkgs.pm:19 do_pkgs.pm:37 printer/printerdrake.pm:4026
+#: do_pkgs.pm:19 do_pkgs.pm:37 printer/printerdrake.pm:4032
#, c-format
msgid "Could not install the %s package!"
msgstr ""
@@ -3099,7 +3094,7 @@ msgstr ""
msgid "Nothing to do"
msgstr "Nuie ce fâ"
-#: harddrake/data.pm:62 install_any.pm:1665
+#: harddrake/data.pm:62 install_any.pm:1689
#, c-format
msgid "Floppy"
msgstr "Floppy"
@@ -3109,12 +3104,12 @@ msgstr "Floppy"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1666
+#: harddrake/data.pm:88 install_any.pm:1690
#, c-format
msgid "Hard Disk"
msgstr ""
-#: harddrake/data.pm:97 install_any.pm:1667
+#: harddrake/data.pm:97 install_any.pm:1691
#, c-format
msgid "CDROM"
msgstr ""
@@ -3204,7 +3199,7 @@ msgstr ""
msgid "Ethernetcard"
msgstr ""
-#: harddrake/data.pm:282 network/netconnect.pm:478
+#: harddrake/data.pm:282 network/netconnect.pm:476
#, c-format
msgid "Modem"
msgstr ""
@@ -3225,7 +3220,7 @@ msgid "AGP controllers"
msgstr ""
#: harddrake/data.pm:324 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:987
+#: install_steps_interactive.pm:983
#, c-format
msgid "Printer"
msgstr ""
@@ -3292,7 +3287,7 @@ msgid "Bridges and system controllers"
msgstr ""
#: harddrake/data.pm:447 help.pm:855 install_steps_interactive.pm:119
-#: install_steps_interactive.pm:947 standalone/keyboarddrake:29
+#: install_steps_interactive.pm:943 standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
msgstr "Tastiere"
@@ -3302,7 +3297,7 @@ msgstr "Tastiere"
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:469 help.pm:855 install_steps_interactive.pm:980
+#: harddrake/data.pm:469 help.pm:855 install_steps_interactive.pm:976
#, c-format
msgid "Mouse"
msgstr "Surie"
@@ -3399,17 +3394,17 @@ msgstr ""
msgid "Trouble shooting"
msgstr ""
-#: harddrake/sound.pm:271 install_steps_interactive.pm:1309 keyboard.pm:391
-#: network/ndiswrapper.pm:95 network/netconnect.pm:457
-#: printer/printerdrake.pm:1429 printer/printerdrake.pm:2460
-#: printer/printerdrake.pm:2559 printer/printerdrake.pm:2605
-#: printer/printerdrake.pm:2672 printer/printerdrake.pm:2707
-#: printer/printerdrake.pm:3032 printer/printerdrake.pm:3039
-#: printer/printerdrake.pm:4025 printer/printerdrake.pm:4354
-#: printer/printerdrake.pm:4474 printer/printerdrake.pm:5614
+#: harddrake/sound.pm:271 install_steps_interactive.pm:1305 keyboard.pm:391
+#: network/ndiswrapper.pm:95 network/netconnect.pm:455
+#: printer/printerdrake.pm:1429 printer/printerdrake.pm:2461
+#: printer/printerdrake.pm:2561 printer/printerdrake.pm:2607
+#: printer/printerdrake.pm:2674 printer/printerdrake.pm:2709
+#: printer/printerdrake.pm:3038 printer/printerdrake.pm:3045
+#: printer/printerdrake.pm:4031 printer/printerdrake.pm:4360
+#: printer/printerdrake.pm:4480 printer/printerdrake.pm:5620
#: standalone/drakTermServ:326 standalone/drakTermServ:1205
#: standalone/drakTermServ:1266 standalone/drakTermServ:1931
-#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
+#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:133
#: standalone/drakclock:224 standalone/drakconnect:973 standalone/drakups:27
#: standalone/harddrake2:479 standalone/localedrake:43
#: standalone/scannerdrake:51 standalone/scannerdrake:940
@@ -3584,8 +3579,8 @@ msgid ""
"button will reboot your computer."
msgstr ""
-#: help.pm:14 install_steps_gtk.pm:559 install_steps_interactive.pm:92
-#: install_steps_interactive.pm:738 standalone/drakautoinst:214
+#: help.pm:14 install_steps_gtk.pm:542 install_steps_interactive.pm:92
+#: install_steps_interactive.pm:734 standalone/drakautoinst:214
#, c-format
msgid "Accept"
msgstr ""
@@ -3631,15 +3626,15 @@ msgid ""
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""
-#: help.pm:51 printer/printerdrake.pm:1886 printer/printerdrake.pm:2007
+#: help.pm:51 printer/printerdrake.pm:1887 printer/printerdrake.pm:2008
#: standalone/draksambashare:54
#, c-format
msgid "User name"
msgstr "Non utent"
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:237
-#: install_steps_gtk.pm:701 interactive.pm:432 interactive/newt.pm:321
-#: network/thirdparty.pm:322 printer/printerdrake.pm:3962
+#: install_steps_gtk.pm:685 interactive.pm:436 interactive/newt.pm:321
+#: network/thirdparty.pm:322 printer/printerdrake.pm:3968
#: standalone/drakTermServ:384 standalone/drakbackup:3954
#: standalone/drakbackup:4048 standalone/drakbackup:4065
#: standalone/drakbackup:4083 ugtk2.pm:510
@@ -3773,7 +3768,7 @@ msgstr "Svilup"
msgid "Graphical Environment"
msgstr "Ambient Grafic"
-#: help.pm:146 install_steps_gtk.pm:235 install_steps_interactive.pm:645
+#: help.pm:146 install_steps_gtk.pm:235 install_steps_interactive.pm:642
#, c-format
msgid "Individual package selection"
msgstr ""
@@ -3783,7 +3778,7 @@ msgstr ""
msgid "Upgrade"
msgstr ""
-#: help.pm:146 install_steps_interactive.pm:603
+#: help.pm:146 install_steps_interactive.pm:600
#, c-format
msgid "With X"
msgstr ""
@@ -3836,17 +3831,17 @@ msgid ""
"such a floppy."
msgstr ""
-#: help.pm:180 help.pm:285 help.pm:313 help.pm:444 install_any.pm:904
-#: interactive.pm:157 modules/interactive.pm:71 standalone/drakbackup:2517
-#: standalone/draksec:54 standalone/harddrake2:309 ugtk2.pm:917 wizards.pm:156
+#: help.pm:180 help.pm:285 help.pm:313 help.pm:444 install_any.pm:925
+#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2517
+#: standalone/draksec:54 standalone/harddrake2:309 ugtk2.pm:918 wizards.pm:156
#, c-format
msgid "No"
msgstr "No"
-#: help.pm:180 help.pm:285 help.pm:444 install_any.pm:904 interactive.pm:157
+#: help.pm:180 help.pm:285 help.pm:444 install_any.pm:925 interactive.pm:161
#: modules/interactive.pm:71 printer/printerdrake.pm:883
#: printer/printerdrake.pm:898 standalone/drakbackup:2517
-#: standalone/draksec:55 standalone/harddrake2:308 ugtk2.pm:917 wizards.pm:156
+#: standalone/draksec:55 standalone/harddrake2:308 ugtk2.pm:918 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Si"
@@ -3865,9 +3860,10 @@ msgid ""
"manual is similar to the one used during installation."
msgstr ""
-#: help.pm:186 help.pm:566 help.pm:855 install_steps_gtk.pm:614
+#: help.pm:186 help.pm:566 help.pm:855 install_steps_gtk.pm:598
#: standalone/drakbackup:2341 standalone/drakbackup:2345
#: standalone/drakbackup:2349 standalone/drakbackup:2353
+#: standalone/drakroam:165
#, c-format
msgid "Configure"
msgstr "Configure"
@@ -3910,7 +3906,7 @@ msgid ""
"server which can be used by other machines on your local network as well."
msgstr ""
-#: help.pm:217 install_steps_interactive.pm:882
+#: help.pm:217 install_steps_interactive.pm:878
#, c-format
msgid "Hardware clock set to GMT"
msgstr ""
@@ -4173,17 +4169,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr ""
-#: help.pm:409 install_steps_interactive.pm:1335
+#: help.pm:409 install_steps_interactive.pm:1331
#, c-format
msgid "Replay"
msgstr ""
-#: help.pm:409 install_steps_interactive.pm:1335
+#: help.pm:409 install_steps_interactive.pm:1331
#, c-format
msgid "Automated"
msgstr ""
-#: help.pm:409 install_steps_interactive.pm:1338
+#: help.pm:409 install_steps_interactive.pm:1334
#, c-format
msgid "Save packages selection"
msgstr ""
@@ -4214,8 +4210,8 @@ msgid ""
"bad blocks on the disk."
msgstr ""
-#: help.pm:431 install_steps_gtk.pm:392 interactive.pm:433
-#: interactive/newt.pm:318 printer/printerdrake.pm:3960
+#: help.pm:431 install_steps_gtk.pm:392 interactive.pm:437
+#: interactive/newt.pm:318 printer/printerdrake.pm:3966
#: standalone/drakTermServ:363 standalone/drakbackup:3914
#: standalone/drakbackup:3953 standalone/drakbackup:4064
#: standalone/drakbackup:4079 ugtk2.pm:508
@@ -4686,8 +4682,8 @@ msgid ""
"system, you can click on the button and choose a different driver."
msgstr ""
-#: help.pm:788 help.pm:855 install_steps_interactive.pm:1014
-#: install_steps_interactive.pm:1031
+#: help.pm:788 help.pm:855 install_steps_interactive.pm:1010
+#: install_steps_interactive.pm:1027
#, c-format
msgid "Sound card"
msgstr ""
@@ -4763,13 +4759,13 @@ msgid ""
"idea to review this setup."
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:878
-#: install_steps_interactive.pm:973 standalone/drakclock:100
+#: help.pm:855 install_steps_interactive.pm:874
+#: install_steps_interactive.pm:969 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:1047
+#: help.pm:855 install_steps_interactive.pm:1043
#, c-format
msgid "TV card"
msgstr "Schede TV"
@@ -4784,33 +4780,33 @@ msgstr ""
msgid "Graphical Interface"
msgstr ""
-#: help.pm:855 install_any.pm:1688 install_steps_interactive.pm:1065
+#: help.pm:855 install_any.pm:1712 install_steps_interactive.pm:1061
#: standalone/drakbackup:2035
#, c-format
msgid "Network"
msgstr "Rêt"
-#: help.pm:855 install_steps_interactive.pm:1077
+#: help.pm:855 install_steps_interactive.pm:1073
#, c-format
msgid "Proxies"
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:1088
+#: help.pm:855 install_steps_interactive.pm:1084
#, c-format
msgid "Security Level"
msgstr "Nivel di Sigurece"
-#: help.pm:855 install_steps_interactive.pm:1102 network/drakfirewall.pm:182
+#: help.pm:855 install_steps_interactive.pm:1098 network/drakfirewall.pm:189
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: help.pm:855 install_steps_interactive.pm:1118
+#: help.pm:855 install_steps_interactive.pm:1114
#, c-format
msgid "Bootloader"
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:1131 services.pm:114
+#: help.pm:855 install_steps_interactive.pm:1127 services.pm:114
#: services.pm:157 services.pm:193
#, c-format
msgid "Services"
@@ -4859,13 +4855,13 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: install_any.pm:405
+#: install_any.pm:401
#, 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:408
+#: install_any.pm:404
#, c-format
msgid ""
"The following media have been found and will be used during install: %s.\n"
@@ -4874,82 +4870,97 @@ msgid ""
"Do you have a supplementary installation media to configure?"
msgstr ""
-#: install_any.pm:421 printer/printerdrake.pm:3290
-#: printer/printerdrake.pm:3297 standalone/scannerdrake:182
+#: install_any.pm:417 printer/printerdrake.pm:3296
+#: printer/printerdrake.pm:3303 standalone/scannerdrake:182
#: standalone/scannerdrake:190 standalone/scannerdrake:241
#: standalone/scannerdrake:248
#, c-format
msgid "CD-ROM"
msgstr "CD-ROM"
-#: install_any.pm:421
+#: install_any.pm:417
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "Rêt"
-#: install_any.pm:421
+#: install_any.pm:417
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "Rêt"
-#: install_any.pm:421
+#: install_any.pm:417
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: install_any.pm:451
+#: install_any.pm:447
#, c-format
msgid "Insert the CD 1 again"
msgstr ""
-#: install_any.pm:477 standalone/drakbackup:112
+#: install_any.pm:473 standalone/drakbackup:112
#, c-format
msgid "No device found"
msgstr ""
-#: install_any.pm:482
+#: install_any.pm:478
#, c-format
msgid "Insert the CD"
msgstr ""
-#: install_any.pm:487
+#: install_any.pm:483
#, c-format
msgid "Unable to mount CD-ROM"
msgstr ""
-#: install_any.pm:520 install_any.pm:539
+#: install_any.pm:516 install_any.pm:535
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: install_any.pm:525
+#: install_any.pm:521
#, c-format
msgid "NFS setup"
msgstr ""
-#: install_any.pm:525
+#: install_any.pm:521
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: install_any.pm:526
+#: install_any.pm:522
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: install_any.pm:526
+#: install_any.pm:522 standalone/draknfs:288
#, c-format
msgid "Directory"
msgstr ""
-#: install_any.pm:575
+#: install_any.pm:571
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
-#: install_any.pm:740
+#: install_any.pm:647
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: install_any.pm:679
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr ""
+
+#: install_any.pm:683
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr ""
+
+#: install_any.pm:761
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4957,13 +4968,13 @@ msgid ""
"done."
msgstr ""
-#: install_any.pm:753
+#: install_any.pm:774
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "Instalazion in vore"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:895
+#: install_any.pm:916
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4978,7 +4989,7 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:918
+#: install_any.pm:939
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4987,74 +4998,74 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: install_any.pm:1354 partition_table.pm:597
+#: install_any.pm:1375 partition_table.pm:597
#, c-format
msgid "Error reading file %s"
msgstr ""
-#: install_any.pm:1585
+#: install_any.pm:1609
#, c-format
msgid "The following disk(s) were renamed:"
msgstr ""
-#: install_any.pm:1587
+#: install_any.pm:1611
#, c-format
msgid "%s (previously named as %s)"
msgstr ""
-#: install_any.pm:1625
+#: install_any.pm:1649
#, 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:1669
+#: install_any.pm:1693
#, c-format
msgid "HTTP"
msgstr ""
-#: install_any.pm:1669
+#: install_any.pm:1693
#, c-format
msgid "FTP"
msgstr ""
-#: install_any.pm:1669
+#: install_any.pm:1693
#, fuzzy, c-format
msgid "NFS"
msgstr "HFS"
-#: install_any.pm:1692
+#: install_any.pm:1716
#, fuzzy, c-format
msgid "Please choose a media"
msgstr "Par plasè sielç"
-#: install_any.pm:1708
+#: install_any.pm:1732
#, c-format
msgid "File already exists. Overwrite it?"
msgstr ""
-#: install_any.pm:1712
+#: install_any.pm:1736
#, c-format
msgid "Permission denied"
msgstr "Permès dineât"
-#: install_any.pm:1761
+#: install_any.pm:1785
#, c-format
msgid "Bad NFS name"
msgstr ""
-#: install_any.pm:1782
+#: install_any.pm:1806
#, fuzzy, c-format
msgid "Bad media %s"
msgstr "font zontade %s"
-#: install_any.pm:1829
+#: install_any.pm:1853
#, c-format
msgid "Can not make screenshots before partitioning"
msgstr ""
-#: install_any.pm:1836
+#: install_any.pm:1860
#, c-format
msgid "Screenshots will be available after install in %s"
msgstr ""
@@ -5459,7 +5470,7 @@ msgstr ""
msgid "Duplicate mount point %s"
msgstr ""
-#: install_steps.pm:469
+#: install_steps.pm:471
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -5483,12 +5494,12 @@ msgid ""
msgstr ""
#: install_steps_gtk.pm:211 install_steps_gtk.pm:228
-#: install_steps_interactive.pm:627
+#: install_steps_interactive.pm:624
#, c-format
msgid "Package Group Selection"
msgstr ""
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:570
+#: install_steps_gtk.pm:254 install_steps_interactive.pm:567
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
@@ -5607,48 +5618,38 @@ msgstr ""
msgid "Choose the packages you want to install"
msgstr ""
-#: install_steps_gtk.pm:430 install_steps_interactive.pm:713
+#: install_steps_gtk.pm:431 install_steps_interactive.pm:710
#, c-format
msgid "Installing"
msgstr ""
-#: install_steps_gtk.pm:437
-#, c-format
-msgid "Estimating"
-msgstr ""
-
-#: install_steps_gtk.pm:487
+#: install_steps_gtk.pm:460
#, c-format
msgid "No details"
msgstr ""
-#: install_steps_gtk.pm:495
+#: install_steps_gtk.pm:475
#, c-format
msgid "Time remaining "
msgstr ""
-#: install_steps_gtk.pm:504
+#: install_steps_gtk.pm:476
#, c-format
-msgid "Please wait, preparing installation..."
+msgid "Estimating"
msgstr ""
-#: install_steps_gtk.pm:519
+#: install_steps_gtk.pm:503
#, c-format
msgid "%d packages"
msgstr ""
-#: install_steps_gtk.pm:524
-#, c-format
-msgid "Installing package %s"
-msgstr ""
-
-#: install_steps_gtk.pm:559 install_steps_interactive.pm:92
-#: install_steps_interactive.pm:738
+#: install_steps_gtk.pm:542 install_steps_interactive.pm:92
+#: install_steps_interactive.pm:734
#, c-format
msgid "Refuse"
msgstr ""
-#: install_steps_gtk.pm:563 install_steps_interactive.pm:742
+#: install_steps_gtk.pm:546 install_steps_interactive.pm:738
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5657,41 +5658,41 @@ msgid ""
"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: install_steps_gtk.pm:578 install_steps_interactive.pm:753
+#: install_steps_gtk.pm:559 install_steps_interactive.pm:749
#, c-format
msgid "There was an error ordering packages:"
msgstr ""
-#: install_steps_gtk.pm:578 install_steps_gtk.pm:582
-#: install_steps_interactive.pm:753 install_steps_interactive.pm:757
+#: install_steps_gtk.pm:561 install_steps_interactive.pm:753
#, c-format
-msgid "Go on anyway?"
+msgid "There was an error installing packages:"
msgstr ""
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:757
+#: install_steps_gtk.pm:563 install_steps_interactive.pm:749
+#: install_steps_interactive.pm:753
#, c-format
-msgid "There was an error installing packages:"
+msgid "Go on anyway?"
msgstr ""
-#: install_steps_gtk.pm:601 install_steps_interactive.pm:933 steps.pm:30
+#: install_steps_gtk.pm:585 install_steps_interactive.pm:929 steps.pm:30
#, c-format
msgid "Summary"
msgstr ""
-#: install_steps_gtk.pm:624 install_steps_interactive.pm:929
-#: install_steps_interactive.pm:1078
+#: install_steps_gtk.pm:608 install_steps_interactive.pm:925
+#: install_steps_interactive.pm:1074
#, c-format
msgid "not configured"
msgstr ""
-#: install_steps_gtk.pm:687
+#: install_steps_gtk.pm:671
#, 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:696
+#: install_steps_gtk.pm:680
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard drive "
@@ -5700,7 +5701,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: install_steps_gtk.pm:698
+#: install_steps_gtk.pm:682
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -5740,89 +5741,89 @@ msgstr ""
msgid "Upgrade %s"
msgstr ""
-#: install_steps_interactive.pm:170
+#: install_steps_interactive.pm:172
#, c-format
msgid "Encryption key for %s"
msgstr ""
-#: install_steps_interactive.pm:187
+#: install_steps_interactive.pm:195
#, c-format
msgid "Please choose your type of mouse."
msgstr ""
-#: install_steps_interactive.pm:188
+#: install_steps_interactive.pm:196
#, c-format
msgid "Mouse choice"
msgstr ""
-#: install_steps_interactive.pm:197 standalone/mousedrake:46
+#: install_steps_interactive.pm:205 standalone/mousedrake:46
#, c-format
msgid "Mouse Port"
msgstr ""
-#: install_steps_interactive.pm:198 standalone/mousedrake:47
+#: install_steps_interactive.pm:206 standalone/mousedrake:47
#, c-format
msgid "Please choose which serial port your mouse is connected to."
msgstr ""
-#: install_steps_interactive.pm:208
+#: install_steps_interactive.pm:216
#, c-format
msgid "Buttons emulation"
msgstr ""
-#: install_steps_interactive.pm:210
+#: install_steps_interactive.pm:218
#, c-format
msgid "Button 2 Emulation"
msgstr ""
-#: install_steps_interactive.pm:211
+#: install_steps_interactive.pm:219
#, c-format
msgid "Button 3 Emulation"
msgstr ""
-#: install_steps_interactive.pm:232
+#: install_steps_interactive.pm:240
#, c-format
msgid "PCMCIA"
msgstr ""
-#: install_steps_interactive.pm:232
+#: install_steps_interactive.pm:240
#, c-format
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: install_steps_interactive.pm:239
+#: install_steps_interactive.pm:247
#, c-format
msgid "IDE"
msgstr ""
-#: install_steps_interactive.pm:239
+#: install_steps_interactive.pm:247
#, c-format
msgid "Configuring IDE"
msgstr ""
-#: install_steps_interactive.pm:259
+#: install_steps_interactive.pm:267
#, c-format
msgid "No partition available"
msgstr ""
-#: install_steps_interactive.pm:262
+#: install_steps_interactive.pm:270
#, c-format
msgid "Scanning partitions to find mount points"
msgstr ""
-#: install_steps_interactive.pm:269
+#: install_steps_interactive.pm:277
#, c-format
msgid "Choose the mount points"
msgstr ""
-#: install_steps_interactive.pm:315
+#: install_steps_interactive.pm:323
#, 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:320
+#: install_steps_interactive.pm:328
#, c-format
msgid ""
"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
@@ -5830,49 +5831,39 @@ msgid ""
"DiskDrake"
msgstr ""
-#: install_steps_interactive.pm:356
+#: install_steps_interactive.pm:364
#, c-format
msgid "Choose the partitions you want to format"
msgstr ""
-#: install_steps_interactive.pm:358
+#: install_steps_interactive.pm:366
#, c-format
msgid "Check bad blocks?"
msgstr ""
-#: install_steps_interactive.pm:386
+#: install_steps_interactive.pm:394
#, 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:389
+#: install_steps_interactive.pm:397
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: install_steps_interactive.pm:396
+#: install_steps_interactive.pm:404
#, c-format
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: install_steps_interactive.pm:397 install_steps_interactive.pm:455
+#: install_steps_interactive.pm:405 install_steps_interactive.pm:455
#, c-format
msgid "Looking for available packages..."
msgstr ""
-#: install_steps_interactive.pm:400
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr ""
-
-#: install_steps_interactive.pm:404
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr ""
-
-#: install_steps_interactive.pm:424 install_steps_interactive.pm:833
+#: install_steps_interactive.pm:424 install_steps_interactive.pm:829
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""
@@ -5897,7 +5888,7 @@ msgid "Load"
msgstr "Locâl"
#: install_steps_interactive.pm:500 standalone/drakbackup:3932
-#: standalone/drakbackup:4005 standalone/drakroam:210 standalone/logdrake:172
+#: standalone/drakbackup:4005 standalone/logdrake:172
#, c-format
msgid "Save"
msgstr "Salve"
@@ -5907,39 +5898,39 @@ msgstr "Salve"
msgid "Bad file"
msgstr "Salve il file"
-#: install_steps_interactive.pm:584
+#: install_steps_interactive.pm:581
#, c-format
msgid "Selected size is larger than available space"
msgstr ""
-#: install_steps_interactive.pm:599
+#: install_steps_interactive.pm:596
#, c-format
msgid "Type of install"
msgstr ""
-#: install_steps_interactive.pm:600
+#: install_steps_interactive.pm:597
#, c-format
msgid ""
"You have not selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: install_steps_interactive.pm:604
+#: install_steps_interactive.pm:601
#, c-format
msgid "With basic documentation (recommended!)"
msgstr ""
-#: install_steps_interactive.pm:605
+#: install_steps_interactive.pm:602
#, c-format
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: install_steps_interactive.pm:644 standalone/drakxtv:52
+#: install_steps_interactive.pm:641 standalone/drakxtv:52
#, c-format
msgid "All"
msgstr "Ducj"
-#: install_steps_interactive.pm:683
+#: install_steps_interactive.pm:680
#, c-format
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
@@ -5947,39 +5938,39 @@ msgid ""
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: install_steps_interactive.pm:688
+#: install_steps_interactive.pm:685
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: install_steps_interactive.pm:713
+#: install_steps_interactive.pm:710
#, c-format
msgid "Preparing installation"
msgstr ""
-#: install_steps_interactive.pm:722
+#: install_steps_interactive.pm:718
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: install_steps_interactive.pm:771
+#: install_steps_interactive.pm:767
#, c-format
msgid "Post-install configuration"
msgstr ""
-#: install_steps_interactive.pm:778
+#: install_steps_interactive.pm:774
#, c-format
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:806
+#: install_steps_interactive.pm:802
#, c-format
msgid "Updates"
msgstr ""
-#: install_steps_interactive.pm:807
+#: install_steps_interactive.pm:803
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5992,142 +5983,142 @@ msgid ""
"Do you want to install the updates?"
msgstr ""
-#: install_steps_interactive.pm:828
+#: install_steps_interactive.pm:824
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
msgstr ""
-#: install_steps_interactive.pm:847
+#: install_steps_interactive.pm:843
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: install_steps_interactive.pm:851
+#: install_steps_interactive.pm:847
#, c-format
msgid "Unable to contact mirror %s"
msgstr ""
-#: install_steps_interactive.pm:851
+#: install_steps_interactive.pm:847
#, c-format
msgid "Would you like to try again?"
msgstr ""
-#: install_steps_interactive.pm:878 standalone/drakclock:45
+#: install_steps_interactive.pm:874 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: install_steps_interactive.pm:883
+#: install_steps_interactive.pm:879
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: install_steps_interactive.pm:891
+#: install_steps_interactive.pm:887
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: install_steps_interactive.pm:946 install_steps_interactive.pm:954
-#: install_steps_interactive.pm:972 install_steps_interactive.pm:979
-#: install_steps_interactive.pm:1130 services.pm:133
+#: install_steps_interactive.pm:942 install_steps_interactive.pm:950
+#: install_steps_interactive.pm:968 install_steps_interactive.pm:975
+#: install_steps_interactive.pm:1126 services.pm:133
#: standalone/drakbackup:1576
#, c-format
msgid "System"
msgstr "Sisteme"
-#: install_steps_interactive.pm:986 install_steps_interactive.pm:1013
-#: install_steps_interactive.pm:1030 install_steps_interactive.pm:1046
-#: install_steps_interactive.pm:1057
+#: install_steps_interactive.pm:982 install_steps_interactive.pm:1009
+#: install_steps_interactive.pm:1026 install_steps_interactive.pm:1042
+#: install_steps_interactive.pm:1053
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: install_steps_interactive.pm:992 install_steps_interactive.pm:1001
+#: install_steps_interactive.pm:988 install_steps_interactive.pm:997
#, c-format
msgid "Remote CUPS server"
msgstr ""
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:988
#, c-format
msgid "No printer"
msgstr ""
-#: install_steps_interactive.pm:1034
+#: install_steps_interactive.pm:1030
#, c-format
msgid "Do you have an ISA sound card?"
msgstr ""
-#: install_steps_interactive.pm:1036
+#: install_steps_interactive.pm:1032
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: install_steps_interactive.pm:1038
+#: install_steps_interactive.pm:1034
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: install_steps_interactive.pm:1058
+#: install_steps_interactive.pm:1054
#, c-format
msgid "Graphical interface"
msgstr ""
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1076
+#: install_steps_interactive.pm:1060 install_steps_interactive.pm:1072
#, c-format
msgid "Network & Internet"
msgstr "Rêt & Internet"
-#: install_steps_interactive.pm:1078
+#: install_steps_interactive.pm:1074
#, c-format
msgid "configured"
msgstr ""
-#: install_steps_interactive.pm:1087 install_steps_interactive.pm:1101
+#: install_steps_interactive.pm:1083 install_steps_interactive.pm:1097
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "Sigurece"
-#: install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1102
#, c-format
msgid "activated"
msgstr ""
-#: install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1102
#, c-format
msgid "disabled"
msgstr "disabilitât"
-#: install_steps_interactive.pm:1117
+#: install_steps_interactive.pm:1113
#, c-format
msgid "Boot"
msgstr "Inviament"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1121 printer/printerdrake.pm:974
+#: install_steps_interactive.pm:1117 printer/printerdrake.pm:974
#, c-format
msgid "%s on %s"
msgstr ""
-#: install_steps_interactive.pm:1135 services.pm:175
+#: install_steps_interactive.pm:1131 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr ""
-#: install_steps_interactive.pm:1145
+#: install_steps_interactive.pm:1141
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
-#: install_steps_interactive.pm:1226
+#: install_steps_interactive.pm:1222
#, c-format
msgid "Preparing bootloader..."
msgstr ""
-#: install_steps_interactive.pm:1236
+#: install_steps_interactive.pm:1232
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -6136,41 +6127,41 @@ msgid ""
"root fs is: root=%s"
msgstr ""
-#: install_steps_interactive.pm:1242
+#: install_steps_interactive.pm:1238
#, c-format
msgid "Do you want to use aboot?"
msgstr ""
-#: install_steps_interactive.pm:1245
+#: install_steps_interactive.pm:1241
#, c-format
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: install_steps_interactive.pm:1262
+#: install_steps_interactive.pm:1258
#, 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:1291 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1287 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: install_steps_interactive.pm:1296
+#: install_steps_interactive.pm:1292
#, c-format
msgid "Please insert another floppy for drivers disk"
msgstr ""
-#: install_steps_interactive.pm:1298
+#: install_steps_interactive.pm:1294
#, c-format
msgid "Creating auto install floppy..."
msgstr ""
-#: install_steps_interactive.pm:1310
+#: install_steps_interactive.pm:1306
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -6178,19 +6169,19 @@ msgid ""
"Do you really want to quit now?"
msgstr ""
-#: install_steps_interactive.pm:1320 standalone/draksambashare:416
+#: install_steps_interactive.pm:1316 standalone/draksambashare:416
#: standalone/draksambashare:523 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:449 standalone/logdrake:455
#, c-format
msgid "Congratulations"
msgstr "Congratulazions"
-#: install_steps_interactive.pm:1328 install_steps_interactive.pm:1329
+#: install_steps_interactive.pm:1324 install_steps_interactive.pm:1325
#, c-format
msgid "Generate auto install floppy"
msgstr ""
-#: install_steps_interactive.pm:1330
+#: install_steps_interactive.pm:1326
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -6212,43 +6203,42 @@ msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: interactive.pm:192
+#: interactive.pm:196
#, c-format
msgid "Choose a file"
msgstr ""
-#: interactive.pm:317 interactive/gtk.pm:507 standalone/drakbackup:1517
-#: standalone/drakfont:655 standalone/drakhosts:242 standalone/draknfs:589
-#: standalone/drakroam:218 standalone/draksambashare:1123
-#: standalone/drakups:301 standalone/drakups:361 standalone/drakups:381
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:321 interactive/gtk.pm:507 standalone/drakbackup:1517
+#: standalone/drakfont:655 standalone/drakhosts:242 standalone/draknfs:605
+#: standalone/draksambashare:1123 standalone/drakups:301
+#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Zonte"
-#: interactive.pm:317 interactive/gtk.pm:507 standalone/drakhosts:249
-#: standalone/draknfs:596 standalone/draksambashare:1080
+#: interactive.pm:321 interactive/gtk.pm:507 standalone/drakhosts:249
+#: standalone/draknfs:612 standalone/draksambashare:1080
#: standalone/draksambashare:1133 standalone/draksambashare:1172
#, c-format
msgid "Modify"
msgstr "Mude"
-#: interactive.pm:317 interactive/gtk.pm:507 standalone/drakhosts:256
-#: standalone/draknfs:603 standalone/drakroam:202
-#: standalone/draksambashare:1081 standalone/draksambashare:1141
-#: standalone/draksambashare:1180 standalone/drakups:303
-#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:321 interactive/gtk.pm:507 standalone/drakhosts:256
+#: standalone/draknfs:619 standalone/draksambashare:1081
+#: standalone/draksambashare:1141 standalone/draksambashare:1180
+#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
+#: standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Rimôf"
-#: interactive.pm:394
+#: interactive.pm:398
#, c-format
msgid "Basic"
msgstr ""
-#: interactive.pm:432 interactive/newt.pm:321 ugtk2.pm:510
+#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:510
#, c-format
msgid "Finish"
msgstr "Finìs"
@@ -8470,9 +8460,9 @@ msgstr ""
#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
#: network/modem.pm:68 network/modem.pm:82 network/modem.pm:87
-#: network/modem.pm:120 network/netconnect.pm:577 network/netconnect.pm:582
-#: network/netconnect.pm:594 network/netconnect.pm:599
-#: network/netconnect.pm:615 network/netconnect.pm:617
+#: network/modem.pm:120 network/netconnect.pm:575 network/netconnect.pm:580
+#: network/netconnect.pm:592 network/netconnect.pm:597
+#: network/netconnect.pm:613 network/netconnect.pm:615
#, c-format
msgid "Automatic"
msgstr ""
@@ -8707,7 +8697,12 @@ msgstr ""
msgid "BitTorrent"
msgstr ""
-#: network/drakfirewall.pm:158
+#: network/drakfirewall.pm:74
+#, c-format
+msgid "Port scan detection"
+msgstr ""
+
+#: network/drakfirewall.pm:165
#, c-format
msgid ""
"drakfirewall configurator\n"
@@ -8717,7 +8712,7 @@ msgid ""
"specialized Mandriva Security Firewall distribution."
msgstr ""
-#: network/drakfirewall.pm:164
+#: network/drakfirewall.pm:171
#, c-format
msgid ""
"drakfirewall configurator\n"
@@ -8726,12 +8721,12 @@ msgid ""
"drakconnect before going any further."
msgstr ""
-#: network/drakfirewall.pm:181
+#: network/drakfirewall.pm:188
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-#: network/drakfirewall.pm:184
+#: network/drakfirewall.pm:191
#, c-format
msgid ""
"You can enter miscellaneous ports. \n"
@@ -8739,7 +8734,7 @@ msgid ""
"Have a look at /etc/services for information."
msgstr ""
-#: network/drakfirewall.pm:190
+#: network/drakfirewall.pm:197
#, c-format
msgid ""
"Invalid port given: %s.\n"
@@ -8749,16 +8744,38 @@ msgid ""
"You can also give a range of ports (eg: 24300:24350/udp)"
msgstr ""
-#: network/drakfirewall.pm:200
+#: network/drakfirewall.pm:207
#, c-format
msgid "Everything (no firewall)"
msgstr ""
-#: network/drakfirewall.pm:202
+#: network/drakfirewall.pm:209
#, c-format
msgid "Other ports"
msgstr ""
+#: network/drakfirewall.pm:251 network/drakfirewall.pm:254
+#: standalone/drakids:33 standalone/drakids:134 standalone/drakids:160
+#: standalone/drakids:169 standalone/drakids:179 standalone/drakids:246
+#: standalone/net_applet:59 standalone/net_applet:180
+#: standalone/net_applet:354 standalone/net_applet:391
+#, fuzzy, c-format
+msgid "Interactive Firewall"
+msgstr "Firewall"
+
+#: network/drakfirewall.pm:252
+#, c-format
+msgid ""
+"You can be warned when someone access to a service or tries to intrude into "
+"your computer.\n"
+"Please select which network activity should be watched."
+msgstr ""
+
+#: network/drakfirewall.pm:257
+#, c-format
+msgid "Use Interactive Firewall"
+msgstr ""
+
#: network/ifw.pm:136
#, fuzzy, c-format
msgid "Port scanning"
@@ -8799,36 +8816,36 @@ msgstr ""
msgid "A \"%s\" attack has been attempted by %s"
msgstr ""
-#: network/isdn.pm:117 network/netconnect.pm:449 network/netconnect.pm:538
-#: network/netconnect.pm:541 network/netconnect.pm:684
-#: network/netconnect.pm:688
+#: network/isdn.pm:117 network/netconnect.pm:447 network/netconnect.pm:536
+#: network/netconnect.pm:539 network/netconnect.pm:682
+#: network/netconnect.pm:686
#, c-format
msgid "Unlisted - edit manually"
msgstr ""
-#: network/isdn.pm:160 network/netconnect.pm:381
+#: network/isdn.pm:160 network/netconnect.pm:379
#, c-format
msgid "ISA / PCMCIA"
msgstr ""
-#: network/isdn.pm:160 network/netconnect.pm:381
+#: network/isdn.pm:160 network/netconnect.pm:379
#, c-format
msgid "I do not know"
msgstr ""
-#: network/isdn.pm:161 network/netconnect.pm:381
+#: network/isdn.pm:161 network/netconnect.pm:379
#, c-format
msgid "PCI"
msgstr ""
-#: network/isdn.pm:162 network/netconnect.pm:381
+#: network/isdn.pm:162 network/netconnect.pm:379
#, c-format
msgid "USB"
msgstr ""
#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:582 network/netconnect.pm:599
-#: network/netconnect.pm:615
+#: network/netconnect.pm:580 network/netconnect.pm:597
+#: network/netconnect.pm:613
#, c-format
msgid "Manual"
msgstr ""
@@ -8865,8 +8882,8 @@ msgstr ""
msgid "Unable to find the ndiswrapper interface!"
msgstr ""
-#: network/netconnect.pm:69 network/netconnect.pm:479
-#: network/netconnect.pm:486
+#: network/netconnect.pm:69 network/netconnect.pm:477
+#: network/netconnect.pm:484
#, c-format
msgid "Manual choice"
msgstr ""
@@ -8876,12 +8893,12 @@ msgstr ""
msgid "Internal ISDN card"
msgstr ""
-#: network/netconnect.pm:80 printer/printerdrake.pm:1642 standalone/drakups:75
+#: network/netconnect.pm:80 printer/printerdrake.pm:1643 standalone/drakups:75
#, c-format
msgid "Manual configuration"
msgstr ""
-#: network/netconnect.pm:81
+#: network/netconnect.pm:81 standalone/drakroam:113
#, c-format
msgid "Automatic IP (BOOTP/DHCP)"
msgstr ""
@@ -8908,290 +8925,291 @@ msgid ""
"No D-Channel (leased lines)"
msgstr ""
-#: network/netconnect.pm:117 network/thirdparty.pm:184
+#: network/netconnect.pm:115 network/thirdparty.pm:184
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr ""
-#: network/netconnect.pm:118
+#: network/netconnect.pm:116
#, c-format
msgid "Sagem USB modem"
msgstr ""
-#: network/netconnect.pm:119
+#: network/netconnect.pm:117
#, c-format
msgid "Bewan modem"
msgstr ""
-#: network/netconnect.pm:120
+#: network/netconnect.pm:118
#, c-format
msgid "ECI Hi-Focus modem"
msgstr ""
-#: network/netconnect.pm:124
+#: network/netconnect.pm:122
#, c-format
msgid "Dynamic Host Configuration Protocol (DHCP)"
msgstr ""
-#: network/netconnect.pm:125
+#: network/netconnect.pm:123
#, c-format
msgid "Manual TCP/IP configuration"
msgstr ""
-#: network/netconnect.pm:126
+#: network/netconnect.pm:124
#, c-format
msgid "Point to Point Tunneling Protocol (PPTP)"
msgstr ""
-#: network/netconnect.pm:127
+#: network/netconnect.pm:125
#, c-format
msgid "PPP over Ethernet (PPPoE)"
msgstr ""
-#: network/netconnect.pm:128
+#: network/netconnect.pm:126
#, c-format
msgid "PPP over ATM (PPPoA)"
msgstr ""
-#: network/netconnect.pm:129
+#: network/netconnect.pm:127
#, c-format
msgid "DSL over CAPI"
msgstr ""
-#: network/netconnect.pm:133
+#: network/netconnect.pm:131
#, c-format
msgid "Bridged Ethernet LLC"
msgstr ""
-#: network/netconnect.pm:134
+#: network/netconnect.pm:132
#, c-format
msgid "Bridged Ethernet VC"
msgstr ""
-#: network/netconnect.pm:135
+#: network/netconnect.pm:133
#, c-format
msgid "Routed IP LLC"
msgstr ""
-#: network/netconnect.pm:136
+#: network/netconnect.pm:134
#, c-format
msgid "Routed IP VC"
msgstr ""
-#: network/netconnect.pm:137
+#: network/netconnect.pm:135
#, c-format
msgid "PPPoA LLC"
msgstr ""
-#: network/netconnect.pm:138
+#: network/netconnect.pm:136
#, c-format
msgid "PPPoA VC"
msgstr ""
-#: network/netconnect.pm:142 standalone/drakconnect:498
+#: network/netconnect.pm:140 standalone/drakconnect:498
#, c-format
msgid "Script-based"
msgstr ""
-#: network/netconnect.pm:143 standalone/drakconnect:498
+#: network/netconnect.pm:141 standalone/drakconnect:498
#, c-format
msgid "PAP"
msgstr ""
-#: network/netconnect.pm:144 standalone/drakconnect:498
+#: network/netconnect.pm:142 standalone/drakconnect:498
#, c-format
msgid "Terminal-based"
msgstr ""
-#: network/netconnect.pm:145 standalone/drakconnect:498
+#: network/netconnect.pm:143 standalone/drakconnect:498
#, c-format
msgid "CHAP"
msgstr ""
-#: network/netconnect.pm:146 standalone/drakconnect:498
+#: network/netconnect.pm:144 standalone/drakconnect:498
#, c-format
msgid "PAP/CHAP"
msgstr ""
-#: network/netconnect.pm:236 standalone/drakconnect:56
+#: network/netconnect.pm:234 standalone/drakconnect:56
#, c-format
msgid "Network & Internet Configuration"
msgstr ""
-#: network/netconnect.pm:242
+#: network/netconnect.pm:240
#, c-format
msgid "LAN connection"
msgstr ""
-#: network/netconnect.pm:243 network/netconnect.pm:262
+#: network/netconnect.pm:241 network/netconnect.pm:260 standalone/drakroam:140
+#: standalone/drakroam:158 standalone/drakroam:161
#, c-format
msgid "Wireless connection"
msgstr ""
-#: network/netconnect.pm:244
+#: network/netconnect.pm:242
#, c-format
msgid "ADSL connection"
msgstr ""
-#: network/netconnect.pm:245
+#: network/netconnect.pm:243
#, c-format
msgid "Cable connection"
msgstr ""
-#: network/netconnect.pm:246
+#: network/netconnect.pm:244
#, c-format
msgid "ISDN connection"
msgstr ""
-#: network/netconnect.pm:247
+#: network/netconnect.pm:245
#, c-format
msgid "Modem connection"
msgstr ""
-#: network/netconnect.pm:248
+#: network/netconnect.pm:246
#, c-format
msgid "DVB connection"
msgstr ""
-#: network/netconnect.pm:258
+#: network/netconnect.pm:256
#, c-format
msgid "Choose the connection you want to configure"
msgstr ""
-#: network/netconnect.pm:273 network/netconnect.pm:761
+#: network/netconnect.pm:271 network/netconnect.pm:759
#, c-format
msgid "Connection Configuration"
msgstr ""
-#: network/netconnect.pm:273 network/netconnect.pm:762
+#: network/netconnect.pm:271 network/netconnect.pm:760
#, c-format
msgid "Please fill or check the field below"
msgstr ""
-#: network/netconnect.pm:276
+#: network/netconnect.pm:274
#, c-format
msgid "Your personal phone number"
msgstr ""
-#: network/netconnect.pm:277 network/netconnect.pm:765
+#: network/netconnect.pm:275 network/netconnect.pm:763
#, c-format
msgid "Provider name (ex provider.net)"
msgstr ""
-#: network/netconnect.pm:278 standalone/drakconnect:493
+#: network/netconnect.pm:276 standalone/drakconnect:493
#, c-format
msgid "Provider phone number"
msgstr ""
-#: network/netconnect.pm:279
+#: network/netconnect.pm:277
#, c-format
msgid "Provider DNS 1 (optional)"
msgstr ""
-#: network/netconnect.pm:280
+#: network/netconnect.pm:278
#, c-format
msgid "Provider DNS 2 (optional)"
msgstr ""
-#: network/netconnect.pm:281 standalone/drakconnect:444
+#: network/netconnect.pm:279 standalone/drakconnect:444
#, c-format
msgid "Dialing mode"
msgstr ""
-#: network/netconnect.pm:282 standalone/drakconnect:449
+#: network/netconnect.pm:280 standalone/drakconnect:449
#: standalone/drakconnect:517
#, c-format
msgid "Connection speed"
msgstr ""
-#: network/netconnect.pm:283 standalone/drakconnect:454
+#: network/netconnect.pm:281 standalone/drakconnect:454
#, c-format
msgid "Connection timeout (in sec)"
msgstr ""
-#: network/netconnect.pm:284 network/netconnect.pm:309
-#: network/netconnect.pm:768 standalone/drakconnect:491
+#: network/netconnect.pm:282 network/netconnect.pm:307
+#: network/netconnect.pm:766 standalone/drakconnect:491
#, c-format
msgid "Account Login (user name)"
msgstr ""
-#: network/netconnect.pm:285 network/netconnect.pm:310
-#: network/netconnect.pm:769 standalone/drakconnect:492
+#: network/netconnect.pm:283 network/netconnect.pm:308
+#: network/netconnect.pm:767 standalone/drakconnect:492
#, c-format
msgid "Account Password"
msgstr ""
-#: network/netconnect.pm:286 standalone/drakconnect:554
+#: network/netconnect.pm:284 standalone/drakconnect:554
#, c-format
msgid "Card IRQ"
msgstr ""
-#: network/netconnect.pm:287 standalone/drakconnect:555
+#: network/netconnect.pm:285 standalone/drakconnect:555
#, c-format
msgid "Card mem (DMA)"
msgstr ""
-#: network/netconnect.pm:288 standalone/drakconnect:556
+#: network/netconnect.pm:286 standalone/drakconnect:556
#, c-format
msgid "Card IO"
msgstr ""
-#: network/netconnect.pm:289 standalone/drakconnect:557
+#: network/netconnect.pm:287 standalone/drakconnect:557
#, c-format
msgid "Card IO_0"
msgstr ""
-#: network/netconnect.pm:290
+#: network/netconnect.pm:288
#, c-format
msgid "Card IO_1"
msgstr ""
-#: network/netconnect.pm:305
+#: network/netconnect.pm:303
#, fuzzy, c-format
msgid "Cable: account options"
msgstr "Abilite le scjadince dal account"
-#: network/netconnect.pm:308
+#: network/netconnect.pm:306
#, c-format
msgid "Use BPALogin (needed for Telstra)"
msgstr ""
-#: network/netconnect.pm:334 network/netconnect.pm:651
-#: network/netconnect.pm:800 network/netconnect.pm:1113
+#: network/netconnect.pm:332 network/netconnect.pm:649
+#: network/netconnect.pm:798 network/netconnect.pm:1111
#, c-format
msgid "Select the network interface to configure:"
msgstr ""
-#: network/netconnect.pm:336 network/netconnect.pm:371
-#: network/netconnect.pm:652 network/netconnect.pm:802 network/shorewall.pm:69
+#: network/netconnect.pm:334 network/netconnect.pm:369
+#: network/netconnect.pm:650 network/netconnect.pm:800 network/shorewall.pm:65
#: standalone/drakconnect:713
#, c-format
msgid "Net Device"
msgstr "Periferiche di rêt"
-#: network/netconnect.pm:337 network/netconnect.pm:342
+#: network/netconnect.pm:335 network/netconnect.pm:340
#, c-format
msgid "External ISDN modem"
msgstr ""
-#: network/netconnect.pm:370 standalone/harddrake2:216
+#: network/netconnect.pm:368 standalone/harddrake2:216
#, c-format
msgid "Select a device!"
msgstr ""
-#: network/netconnect.pm:379 network/netconnect.pm:389
-#: network/netconnect.pm:399 network/netconnect.pm:432
-#: network/netconnect.pm:446
+#: network/netconnect.pm:377 network/netconnect.pm:387
+#: network/netconnect.pm:397 network/netconnect.pm:430
+#: network/netconnect.pm:444
#, c-format
msgid "ISDN Configuration"
msgstr "Configurazion ISDN"
-#: network/netconnect.pm:380
+#: network/netconnect.pm:378
#, c-format
msgid "What kind of card do you have?"
msgstr ""
-#: network/netconnect.pm:390
+#: network/netconnect.pm:388
#, c-format
msgid ""
"\n"
@@ -9201,22 +9219,22 @@ msgid ""
"card.\n"
msgstr ""
-#: network/netconnect.pm:394
+#: network/netconnect.pm:392
#, c-format
msgid "Continue"
msgstr "Continue"
-#: network/netconnect.pm:394
+#: network/netconnect.pm:392
#, c-format
msgid "Abort"
msgstr ""
-#: network/netconnect.pm:400
+#: network/netconnect.pm:398
#, c-format
msgid "Which of the following is your ISDN card?"
msgstr ""
-#: network/netconnect.pm:418
+#: network/netconnect.pm:416
#, c-format
msgid ""
"A CAPI driver is available for this modem. This CAPI driver can offer more "
@@ -9224,209 +9242,209 @@ msgid ""
"want to use?"
msgstr ""
-#: network/netconnect.pm:420 standalone/drakconnect:109 standalone/drakups:251
+#: network/netconnect.pm:418 standalone/drakconnect:109 standalone/drakups:251
#: standalone/harddrake2:133
#, c-format
msgid "Driver"
msgstr ""
-#: network/netconnect.pm:432
+#: network/netconnect.pm:430
#, c-format
msgid "Which protocol do you want to use?"
msgstr ""
-#: network/netconnect.pm:434 standalone/drakconnect:109
+#: network/netconnect.pm:432 standalone/drakconnect:109
#: standalone/drakconnect:300 standalone/drakconnect:562
#: standalone/drakids:196 standalone/drakvpn:1128
#, c-format
msgid "Protocol"
msgstr "Protocol"
-#: network/netconnect.pm:446
+#: network/netconnect.pm:444
#, c-format
msgid ""
"Select your provider.\n"
"If it is not listed, choose Unlisted."
msgstr ""
-#: network/netconnect.pm:448 network/netconnect.pm:537
-#: network/netconnect.pm:683
+#: network/netconnect.pm:446 network/netconnect.pm:535
+#: network/netconnect.pm:681
#, c-format
msgid "Provider:"
msgstr ""
-#: network/netconnect.pm:457
+#: network/netconnect.pm:455
#, c-format
msgid ""
"Your modem is not supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""
-#: network/netconnect.pm:476
+#: network/netconnect.pm:474
#, c-format
msgid "Select the modem to configure:"
msgstr ""
-#: network/netconnect.pm:506
+#: network/netconnect.pm:504
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr ""
-#: network/netconnect.pm:535
+#: network/netconnect.pm:533
#, c-format
msgid "Select your provider:"
msgstr ""
-#: network/netconnect.pm:559
+#: network/netconnect.pm:557
#, c-format
msgid "Dialup: account options"
msgstr ""
-#: network/netconnect.pm:562
+#: network/netconnect.pm:560
#, c-format
msgid "Connection name"
msgstr ""
-#: network/netconnect.pm:563
+#: network/netconnect.pm:561
#, c-format
msgid "Phone number"
msgstr ""
-#: network/netconnect.pm:564
+#: network/netconnect.pm:562
#, c-format
msgid "Login ID"
msgstr ""
-#: network/netconnect.pm:579 network/netconnect.pm:612
+#: network/netconnect.pm:577 network/netconnect.pm:610
#, c-format
msgid "Dialup: IP parameters"
msgstr ""
-#: network/netconnect.pm:582
+#: network/netconnect.pm:580
#, c-format
msgid "IP parameters"
msgstr ""
-#: network/netconnect.pm:583 network/netconnect.pm:886
+#: network/netconnect.pm:581 network/netconnect.pm:884
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakups:286
+#: standalone/drakhosts:197 standalone/drakroam:114 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr ""
-#: network/netconnect.pm:584
+#: network/netconnect.pm:582
#, c-format
msgid "Subnet mask"
msgstr ""
-#: network/netconnect.pm:596
+#: network/netconnect.pm:594
#, c-format
msgid "Dialup: DNS parameters"
msgstr ""
-#: network/netconnect.pm:599
+#: network/netconnect.pm:597
#, c-format
msgid "DNS"
msgstr ""
-#: network/netconnect.pm:600
+#: network/netconnect.pm:598
#, c-format
msgid "Domain name"
msgstr ""
-#: network/netconnect.pm:601 network/netconnect.pm:766
+#: network/netconnect.pm:599 network/netconnect.pm:764
#: standalone/drakconnect:992
#, c-format
msgid "First DNS Server (optional)"
msgstr ""
-#: network/netconnect.pm:602 network/netconnect.pm:767
+#: network/netconnect.pm:600 network/netconnect.pm:765
#: standalone/drakconnect:993
#, c-format
msgid "Second DNS Server (optional)"
msgstr ""
-#: network/netconnect.pm:603
+#: network/netconnect.pm:601
#, c-format
msgid "Set hostname from IP"
msgstr ""
-#: network/netconnect.pm:615 standalone/drakconnect:327
+#: network/netconnect.pm:613 standalone/drakconnect:327
#, c-format
msgid "Gateway"
msgstr ""
-#: network/netconnect.pm:616
+#: network/netconnect.pm:614 standalone/drakroam:116
#, c-format
msgid "Gateway IP address"
msgstr ""
-#: network/netconnect.pm:651
+#: network/netconnect.pm:649
#, c-format
msgid "ADSL configuration"
msgstr ""
-#: network/netconnect.pm:681
+#: network/netconnect.pm:679
#, c-format
msgid "Please choose your ADSL provider"
msgstr ""
-#: network/netconnect.pm:711
+#: network/netconnect.pm:709
#, c-format
msgid ""
"Please choose your DSL connection type.\n"
"If you do not know it, keep the preselected type."
msgstr ""
-#: network/netconnect.pm:714
+#: network/netconnect.pm:712
#, c-format
msgid "ADSL connection type:"
msgstr ""
-#: network/netconnect.pm:771
+#: network/netconnect.pm:769
#, c-format
msgid "Virtual Path ID (VPI):"
msgstr ""
-#: network/netconnect.pm:772
+#: network/netconnect.pm:770
#, c-format
msgid "Virtual Circuit ID (VCI):"
msgstr ""
-#: network/netconnect.pm:775
+#: network/netconnect.pm:773
#, c-format
msgid "Encapsulation:"
msgstr ""
-#: network/netconnect.pm:802
+#: network/netconnect.pm:800
#, c-format
msgid "Manually load a driver"
msgstr ""
-#: network/netconnect.pm:802
+#: network/netconnect.pm:800
#, c-format
msgid "Use a Windows driver (with ndiswrapper)"
msgstr ""
-#: network/netconnect.pm:842
+#: network/netconnect.pm:840
#, c-format
msgid "Zeroconf hostname resolution"
msgstr ""
-#: network/netconnect.pm:843 network/netconnect.pm:873
+#: network/netconnect.pm:841 network/netconnect.pm:871
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr ""
-#: network/netconnect.pm:844
+#: network/netconnect.pm:842
#, 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:874
+#: network/netconnect.pm:872
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -9434,196 +9452,197 @@ msgid ""
"notation (for example, 1.2.3.4)."
msgstr ""
-#: network/netconnect.pm:881 standalone/drakconnect:373
+#: network/netconnect.pm:879 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr ""
-#: network/netconnect.pm:882 standalone/drakconnect:375
+#: network/netconnect.pm:880 standalone/drakconnect:375
#, c-format
msgid "DHCP host name"
msgstr ""
-#: network/netconnect.pm:887 standalone/drakconnect:321
+#: network/netconnect.pm:885 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr ""
-#: network/netconnect.pm:889 standalone/drakconnect:437
+#: network/netconnect.pm:887 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: network/netconnect.pm:890 standalone/drakconnect:438
+#: network/netconnect.pm:888 standalone/drakconnect:438
#, c-format
msgid "Network Hotplugging"
msgstr ""
-#: network/netconnect.pm:892 standalone/drakconnect:432
+#: network/netconnect.pm:890 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr ""
-#: network/netconnect.pm:894 standalone/drakconnect:460
+#: network/netconnect.pm:892 standalone/drakconnect:460
#, fuzzy, c-format
msgid "Metric"
msgstr "Messic"
-#: network/netconnect.pm:895
+#: network/netconnect.pm:893
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""
-#: network/netconnect.pm:897 standalone/drakconnect:369
+#: network/netconnect.pm:895 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr ""
-#: network/netconnect.pm:899 standalone/drakconnect:379
+#: network/netconnect.pm:897 standalone/drakconnect:379
#, c-format
msgid "DHCP timeout (in seconds)"
msgstr ""
-#: network/netconnect.pm:900 standalone/drakconnect:382
+#: network/netconnect.pm:898 standalone/drakconnect:382
#, c-format
msgid "Get DNS servers from DHCP"
msgstr ""
-#: network/netconnect.pm:901 standalone/drakconnect:383
+#: network/netconnect.pm:899 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""
-#: network/netconnect.pm:902 standalone/drakconnect:384
+#: network/netconnect.pm:900 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""
-#: network/netconnect.pm:910 printer/printerdrake.pm:1896
+#: network/netconnect.pm:908 printer/printerdrake.pm:1897
#: standalone/drakconnect:676
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:914 standalone/drakconnect:680
+#: network/netconnect.pm:912 standalone/drakconnect:680
#, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr ""
-#: network/netconnect.pm:918
+#: network/netconnect.pm:916
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr ""
-#: network/netconnect.pm:923 standalone/drakTermServ:1852
+#: network/netconnect.pm:921 standalone/drakTermServ:1852
#: standalone/drakTermServ:1853 standalone/drakTermServ:1854
#, c-format
msgid "%s already in use\n"
msgstr ""
-#: network/netconnect.pm:963
+#: network/netconnect.pm:961
#, fuzzy, c-format
msgid "Choose an ndiswrapper driver"
msgstr "Sielç un server X"
-#: network/netconnect.pm:965
+#: network/netconnect.pm:963
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
-#: network/netconnect.pm:965
+#: network/netconnect.pm:963
#, fuzzy, c-format
msgid "Install a new driver"
msgstr "Server mail interni"
-#: network/netconnect.pm:977
+#: network/netconnect.pm:975
#, c-format
msgid "Select a device:"
msgstr ""
-#: network/netconnect.pm:1006
+#: network/netconnect.pm:1004
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr ""
-#: network/netconnect.pm:1009 standalone/drakconnect:404
+#: network/netconnect.pm:1007 standalone/drakconnect:404
#, c-format
msgid "Operating Mode"
msgstr ""
-#: network/netconnect.pm:1010
+#: network/netconnect.pm:1008
#, c-format
msgid "Ad-hoc"
msgstr ""
-#: network/netconnect.pm:1010
+#: network/netconnect.pm:1008
#, c-format
msgid "Managed"
msgstr ""
-#: network/netconnect.pm:1010
+#: network/netconnect.pm:1008
#, c-format
msgid "Master"
msgstr ""
-#: network/netconnect.pm:1010
+#: network/netconnect.pm:1008
#, c-format
msgid "Repeater"
msgstr ""
-#: network/netconnect.pm:1010
+#: network/netconnect.pm:1008
#, c-format
msgid "Secondary"
msgstr ""
-#: network/netconnect.pm:1010
+#: network/netconnect.pm:1008
#, c-format
msgid "Auto"
msgstr ""
-#: network/netconnect.pm:1013 standalone/drakconnect:405
+#: network/netconnect.pm:1011 standalone/drakconnect:405
+#: standalone/drakroam:107
#, c-format
msgid "Network name (ESSID)"
msgstr ""
-#: network/netconnect.pm:1014
+#: network/netconnect.pm:1012 standalone/drakroam:108
#, c-format
msgid "Encryption mode"
msgstr ""
-#: network/netconnect.pm:1019
+#: network/netconnect.pm:1017
#, c-format
msgid "Allow access point roaming"
msgstr ""
-#: network/netconnect.pm:1020 standalone/drakconnect:406
+#: network/netconnect.pm:1018 standalone/drakconnect:406
#, c-format
msgid "Network ID"
msgstr ""
-#: network/netconnect.pm:1021 standalone/drakconnect:407
+#: network/netconnect.pm:1019 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr ""
-#: network/netconnect.pm:1022 standalone/drakconnect:408
+#: network/netconnect.pm:1020 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr ""
-#: network/netconnect.pm:1023 standalone/drakconnect:409
+#: network/netconnect.pm:1021 standalone/drakconnect:409
#, c-format
msgid "Bitrate (in b/s)"
msgstr ""
-#: network/netconnect.pm:1024 standalone/drakconnect:420
+#: network/netconnect.pm:1022 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr ""
-#: network/netconnect.pm:1025
+#: network/netconnect.pm:1023
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -9637,17 +9656,17 @@ msgid ""
"or off."
msgstr ""
-#: network/netconnect.pm:1032 standalone/drakconnect:421
+#: network/netconnect.pm:1030 standalone/drakconnect:421
#, c-format
msgid "Fragmentation"
msgstr ""
-#: network/netconnect.pm:1033 standalone/drakconnect:422
+#: network/netconnect.pm:1031 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr ""
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1032
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -9658,12 +9677,12 @@ msgid ""
msgstr ""
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1041 standalone/drakconnect:423
+#: network/netconnect.pm:1039 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr ""
-#: network/netconnect.pm:1042
+#: network/netconnect.pm:1040
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -9675,12 +9694,12 @@ msgid ""
"See iwpspy(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1051 standalone/drakconnect:424
+#: network/netconnect.pm:1049 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr ""
-#: network/netconnect.pm:1052
+#: network/netconnect.pm:1050
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -9698,51 +9717,51 @@ msgid ""
"See iwpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1065
#, 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:1071
+#: network/netconnect.pm:1069
#, 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:1113
+#: network/netconnect.pm:1111
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1114
+#: network/netconnect.pm:1112
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1131
+#: network/netconnect.pm:1129
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1134
+#: network/netconnect.pm:1132
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1135
+#: network/netconnect.pm:1133
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1136
+#: network/netconnect.pm:1134
#, c-format
msgid "PID"
msgstr ""
-#: network/netconnect.pm:1164
+#: network/netconnect.pm:1162
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -9751,67 +9770,67 @@ msgid ""
"You may also enter the IP address of the gateway if you have one."
msgstr ""
-#: network/netconnect.pm:1169
+#: network/netconnect.pm:1167
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
-#: network/netconnect.pm:1171 standalone/drakconnect:991
+#: network/netconnect.pm:1169 standalone/drakconnect:991
#, c-format
msgid "Host name (optional)"
msgstr ""
-#: network/netconnect.pm:1171 standalone/drakhosts:197
+#: network/netconnect.pm:1169 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "Non host"
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1171
#, c-format
msgid "DNS server 1"
msgstr ""
-#: network/netconnect.pm:1174
+#: network/netconnect.pm:1172
#, c-format
msgid "DNS server 2"
msgstr ""
-#: network/netconnect.pm:1175
+#: network/netconnect.pm:1173
#, c-format
msgid "DNS server 3"
msgstr ""
-#: network/netconnect.pm:1176
+#: network/netconnect.pm:1174
#, c-format
msgid "Search domain"
msgstr ""
-#: network/netconnect.pm:1177
+#: network/netconnect.pm:1175
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
-#: network/netconnect.pm:1178
+#: network/netconnect.pm:1176
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: network/netconnect.pm:1180
+#: network/netconnect.pm:1178
#, c-format
msgid "Gateway device"
msgstr ""
-#: network/netconnect.pm:1189
+#: network/netconnect.pm:1187
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:1194 standalone/drakconnect:685
+#: network/netconnect.pm:1192 standalone/drakconnect:685
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:1207
+#: network/netconnect.pm:1205
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -9820,88 +9839,88 @@ msgid ""
"It is not necessary on most networks."
msgstr ""
-#: network/netconnect.pm:1211
+#: network/netconnect.pm:1209
#, c-format
msgid "Zeroconf Host name"
msgstr ""
-#: network/netconnect.pm:1214
+#: network/netconnect.pm:1212
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: network/netconnect.pm:1224
+#: network/netconnect.pm:1222
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "Vuelistu provâ le configurazion?"
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1235
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: network/netconnect.pm:1252
+#: network/netconnect.pm:1250
#, c-format
msgid "Automatically at boot"
msgstr ""
-#: network/netconnect.pm:1254
+#: network/netconnect.pm:1252
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""
-#: network/netconnect.pm:1256
+#: network/netconnect.pm:1254
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
-#: network/netconnect.pm:1265
+#: network/netconnect.pm:1263
#, fuzzy, c-format
msgid "How do you want to dial this connection?"
msgstr "Vuelistu provâ le configurazion?"
-#: network/netconnect.pm:1278
+#: network/netconnect.pm:1276
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: network/netconnect.pm:1286 standalone/drakconnect:1023
+#: network/netconnect.pm:1284 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr ""
-#: network/netconnect.pm:1306
+#: network/netconnect.pm:1304
#, c-format
msgid "The system is now connected to the Internet."
msgstr ""
-#: network/netconnect.pm:1307
+#: network/netconnect.pm:1305
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr ""
-#: network/netconnect.pm:1308
+#: network/netconnect.pm:1306
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: network/netconnect.pm:1323
+#: network/netconnect.pm:1321
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"\n"
msgstr ""
-#: network/netconnect.pm:1326
+#: network/netconnect.pm:1324
#, 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:1327
+#: network/netconnect.pm:1325
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -9909,28 +9928,28 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1336
#, c-format
msgid "(detected on port %s)"
msgstr ""
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1340
+#: network/netconnect.pm:1338
#, c-format
msgid "(detected %s)"
msgstr ""
-#: network/netconnect.pm:1340
+#: network/netconnect.pm:1338
#, c-format
msgid "(detected)"
msgstr ""
-#: network/netconnect.pm:1341
+#: network/netconnect.pm:1339
#, c-format
msgid "Network Configuration"
msgstr ""
-#: network/netconnect.pm:1342
+#: network/netconnect.pm:1340
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -9939,12 +9958,12 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: network/netconnect.pm:1345
+#: network/netconnect.pm:1343
#, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr ""
-#: network/netconnect.pm:1346
+#: network/netconnect.pm:1344
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -9952,7 +9971,7 @@ msgid ""
"%s"
msgstr ""
-#: network/netconnect.pm:1347
+#: network/netconnect.pm:1345
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -9961,12 +9980,12 @@ msgid ""
"Press \"%s\" to continue."
msgstr ""
-#: network/netconnect.pm:1348
+#: network/netconnect.pm:1346
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr ""
-#: network/netconnect.pm:1349
+#: network/netconnect.pm:1347
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -9974,44 +9993,44 @@ msgid ""
"\n"
msgstr ""
-#: network/netconnect.pm:1350
+#: network/netconnect.pm:1348
#, c-format
msgid "Internet connection"
msgstr ""
-#: network/netconnect.pm:1367
+#: network/netconnect.pm:1365
#, c-format
msgid ""
"An unexpected error has happened:\n"
"%s"
msgstr ""
-#: network/network.pm:396 network/network.pm:397
+#: network/network.pm:401 network/network.pm:402
#, c-format
msgid "Proxies configuration"
msgstr ""
-#: network/network.pm:398
+#: network/network.pm:403
#, c-format
msgid "HTTP proxy"
msgstr ""
-#: network/network.pm:399
+#: network/network.pm:404
#, c-format
msgid "FTP proxy"
msgstr ""
-#: network/network.pm:402
+#: network/network.pm:407
#, c-format
msgid "Proxy should be http://..."
msgstr ""
-#: network/network.pm:403
+#: network/network.pm:408
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr ""
-#: network/shorewall.pm:54
+#: network/shorewall.pm:50
#, c-format
msgid ""
"Please enter the name of the interface connected to the internet.\n"
@@ -10213,7 +10232,7 @@ msgstr ""
msgid "maybe"
msgstr ""
-#: pkgs.pm:461
+#: pkgs.pm:473
#, c-format
msgid "Downloading file %s..."
msgstr ""
@@ -10238,9 +10257,9 @@ msgstr ""
msgid "On CUPS server \"%s\""
msgstr ""
-#: printer/cups.pm:117 printer/printerdrake.pm:5049
-#: printer/printerdrake.pm:5059 printer/printerdrake.pm:5204
-#: printer/printerdrake.pm:5215 printer/printerdrake.pm:5428
+#: printer/cups.pm:117 printer/printerdrake.pm:5055
+#: printer/printerdrake.pm:5065 printer/printerdrake.pm:5210
+#: printer/printerdrake.pm:5221 printer/printerdrake.pm:5434
#, c-format
msgid " (Default)"
msgstr " (Predefinît)"
@@ -10290,8 +10309,8 @@ msgstr ""
msgid "Remote CUPS"
msgstr "Rimît"
-#: printer/detect.pm:156 printer/detect.pm:239 printer/detect.pm:441
-#: printer/detect.pm:478
+#: printer/detect.pm:166 printer/detect.pm:250 printer/detect.pm:452
+#: printer/detect.pm:489
#, c-format
msgid "Unknown Model"
msgstr ""
@@ -10312,7 +10331,7 @@ msgid "Printer on remote CUPS server"
msgstr ""
#: printer/main.pm:30 printer/printerdrake.pm:1373
-#: printer/printerdrake.pm:1919
+#: printer/printerdrake.pm:1920
#, c-format
msgid "Printer on remote lpd server"
msgstr ""
@@ -10332,7 +10351,7 @@ msgstr ""
msgid "Printer on NetWare server"
msgstr ""
-#: printer/main.pm:34 printer/printerdrake.pm:1923
+#: printer/main.pm:34 printer/printerdrake.pm:1924
#, c-format
msgid "Enter a printer device URI"
msgstr ""
@@ -10347,10 +10366,10 @@ msgstr ""
msgid "recommended"
msgstr "racomandât"
-#: printer/main.pm:330 printer/main.pm:686 printer/main.pm:1800
-#: printer/main.pm:2943 printer/main.pm:2952 printer/printerdrake.pm:973
-#: printer/printerdrake.pm:1133 printer/printerdrake.pm:2411
-#: printer/printerdrake.pm:5465
+#: printer/main.pm:330 printer/main.pm:690 printer/main.pm:1805
+#: printer/main.pm:2973 printer/main.pm:2982 printer/printerdrake.pm:973
+#: printer/printerdrake.pm:1133 printer/printerdrake.pm:2412
+#: printer/printerdrake.pm:5471
#, c-format
msgid "Unknown model"
msgstr ""
@@ -10360,12 +10379,12 @@ msgstr ""
msgid "Configured on this machine"
msgstr ""
-#: printer/main.pm:361 printer/printerdrake.pm:1462
+#: printer/main.pm:361 printer/printerdrake.pm:1463
#, c-format
msgid " on parallel port #%s"
msgstr ""
-#: printer/main.pm:364 printer/printerdrake.pm:1465
+#: printer/main.pm:364 printer/printerdrake.pm:1466
#, c-format
msgid ", USB printer #%s"
msgstr ""
@@ -10455,8 +10474,8 @@ msgstr ""
msgid "Parallel port #%s"
msgstr ""
-#: printer/main.pm:432 printer/printerdrake.pm:1483
-#: printer/printerdrake.pm:1510 printer/printerdrake.pm:1528
+#: printer/main.pm:432 printer/printerdrake.pm:1484
+#: printer/printerdrake.pm:1511 printer/printerdrake.pm:1529
#, c-format
msgid "USB printer #%s"
msgstr ""
@@ -10546,34 +10565,34 @@ msgstr ""
msgid "URI: %s"
msgstr ""
-#: printer/main.pm:683 printer/printerdrake.pm:1060
-#: printer/printerdrake.pm:3221
+#: printer/main.pm:687 printer/printerdrake.pm:1060
+#: printer/printerdrake.pm:3227
#, c-format
msgid "Raw printer (No driver)"
msgstr ""
-#: printer/main.pm:1298 printer/printerdrake.pm:211
+#: printer/main.pm:1304 printer/printerdrake.pm:211
#: printer/printerdrake.pm:223
#, c-format
msgid "Local network(s)"
msgstr ""
-#: printer/main.pm:1300 printer/printerdrake.pm:227
+#: printer/main.pm:1306 printer/printerdrake.pm:227
#, c-format
msgid "Interface \"%s\""
msgstr ""
-#: printer/main.pm:1302
+#: printer/main.pm:1308
#, c-format
msgid "Network %s"
msgstr ""
-#: printer/main.pm:1304
+#: printer/main.pm:1310
#, c-format
msgid "Host %s"
msgstr ""
-#: printer/main.pm:1333
+#: printer/main.pm:1339
#, c-format
msgid "%s (Port %s)"
msgstr ""
@@ -10693,7 +10712,7 @@ msgid ""
msgstr ""
#: printer/printerdrake.pm:138 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4682
+#: printer/printerdrake.pm:4688
#, c-format
msgid "Remote CUPS server and no local CUPS daemon"
msgstr ""
@@ -10827,7 +10846,7 @@ msgstr ""
msgid "The entered IP is not correct.\n"
msgstr ""
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2153
+#: printer/printerdrake.pm:440 printer/printerdrake.pm:2154
#, c-format
msgid "The port number should be an integer!"
msgstr ""
@@ -10837,7 +10856,7 @@ msgstr ""
msgid "This server is already in the list, it cannot be added again.\n"
msgstr ""
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2180
+#: printer/printerdrake.pm:462 printer/printerdrake.pm:2181
#: standalone/drakups:251 standalone/harddrake2:52
#, c-format
msgid "Port"
@@ -10850,8 +10869,8 @@ msgstr ""
msgid "On, Name or IP of remote server:"
msgstr ""
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4691
-#: printer/printerdrake.pm:4757
+#: printer/printerdrake.pm:514 printer/printerdrake.pm:4697
+#: printer/printerdrake.pm:4763
#, c-format
msgid "CUPS server name or IP address missing."
msgstr ""
@@ -10861,31 +10880,31 @@ msgstr ""
#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
#: printer/printerdrake.pm:1036 printer/printerdrake.pm:1078
#: printer/printerdrake.pm:1088 printer/printerdrake.pm:1123
-#: printer/printerdrake.pm:2240 printer/printerdrake.pm:2455
-#: printer/printerdrake.pm:2487 printer/printerdrake.pm:2548
-#: printer/printerdrake.pm:2600 printer/printerdrake.pm:2617
-#: printer/printerdrake.pm:2661 printer/printerdrake.pm:2701
-#: printer/printerdrake.pm:2751 printer/printerdrake.pm:2785
-#: printer/printerdrake.pm:2795 printer/printerdrake.pm:3063
-#: printer/printerdrake.pm:3068 printer/printerdrake.pm:3216
-#: printer/printerdrake.pm:3327 printer/printerdrake.pm:3940
-#: printer/printerdrake.pm:4007 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4059 printer/printerdrake.pm:4191
-#: printer/printerdrake.pm:4292 printer/printerdrake.pm:4364
-#: printer/printerdrake.pm:4385 printer/printerdrake.pm:4395
-#: printer/printerdrake.pm:4486 printer/printerdrake.pm:4581
-#: printer/printerdrake.pm:4587 printer/printerdrake.pm:4611
-#: printer/printerdrake.pm:4718 printer/printerdrake.pm:4827
-#: printer/printerdrake.pm:4847 printer/printerdrake.pm:4856
-#: printer/printerdrake.pm:4871 printer/printerdrake.pm:5072
-#: printer/printerdrake.pm:5534 printer/printerdrake.pm:5617
+#: printer/printerdrake.pm:2241 printer/printerdrake.pm:2456
+#: printer/printerdrake.pm:2488 printer/printerdrake.pm:2550
+#: printer/printerdrake.pm:2602 printer/printerdrake.pm:2619
+#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2703
+#: printer/printerdrake.pm:2753 printer/printerdrake.pm:2790
+#: printer/printerdrake.pm:2801 printer/printerdrake.pm:3069
+#: printer/printerdrake.pm:3074 printer/printerdrake.pm:3222
+#: printer/printerdrake.pm:3333 printer/printerdrake.pm:3946
+#: printer/printerdrake.pm:4013 printer/printerdrake.pm:4062
+#: printer/printerdrake.pm:4065 printer/printerdrake.pm:4197
+#: printer/printerdrake.pm:4298 printer/printerdrake.pm:4370
+#: printer/printerdrake.pm:4391 printer/printerdrake.pm:4401
+#: printer/printerdrake.pm:4492 printer/printerdrake.pm:4587
+#: printer/printerdrake.pm:4593 printer/printerdrake.pm:4617
+#: printer/printerdrake.pm:4724 printer/printerdrake.pm:4833
+#: printer/printerdrake.pm:4853 printer/printerdrake.pm:4862
+#: printer/printerdrake.pm:4877 printer/printerdrake.pm:5078
+#: printer/printerdrake.pm:5540 printer/printerdrake.pm:5623
#: standalone/printerdrake:73 standalone/printerdrake:572
#, c-format
msgid "Printerdrake"
msgstr ""
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4293
-#: printer/printerdrake.pm:4828
+#: printer/printerdrake.pm:567 printer/printerdrake.pm:4299
+#: printer/printerdrake.pm:4834
#, c-format
msgid "Reading printer data..."
msgstr ""
@@ -11009,7 +11028,7 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:5074
+#: printer/printerdrake.pm:751 printer/printerdrake.pm:5080
#, c-format
msgid ""
"\n"
@@ -11210,12 +11229,12 @@ msgstr ""
msgid ")"
msgstr ""
-#: printer/printerdrake.pm:1069 printer/printerdrake.pm:3228
+#: printer/printerdrake.pm:1069 printer/printerdrake.pm:3234
#, c-format
msgid "Printer model selection"
msgstr ""
-#: printer/printerdrake.pm:1070 printer/printerdrake.pm:3229
+#: printer/printerdrake.pm:1070 printer/printerdrake.pm:3235
#, c-format
msgid "Which printer model do you have?"
msgstr ""
@@ -11229,14 +11248,14 @@ msgid ""
"choose the correct model from the list."
msgstr ""
-#: printer/printerdrake.pm:1074 printer/printerdrake.pm:3234
+#: printer/printerdrake.pm:1074 printer/printerdrake.pm:3240
#, c-format
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: printer/printerdrake.pm:1089 printer/printerdrake.pm:4848
+#: printer/printerdrake.pm:1089 printer/printerdrake.pm:4854
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr ""
@@ -11269,9 +11288,9 @@ msgid ""
msgstr ""
#: printer/printerdrake.pm:1274 printer/printerdrake.pm:1286
-#: printer/printerdrake.pm:1393 printer/printerdrake.pm:2421
-#: printer/printerdrake.pm:2436 printer/printerdrake.pm:2508
-#: printer/printerdrake.pm:5091 printer/printerdrake.pm:5264
+#: printer/printerdrake.pm:1393 printer/printerdrake.pm:2422
+#: printer/printerdrake.pm:2437 printer/printerdrake.pm:2509
+#: printer/printerdrake.pm:5097 printer/printerdrake.pm:5270
#, c-format
msgid "Add a new printer"
msgstr ""
@@ -11399,14 +11418,14 @@ msgid ""
"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
msgstr ""
-#: printer/printerdrake.pm:1430 printer/printerdrake.pm:1661
-#: printer/printerdrake.pm:1724 printer/printerdrake.pm:1816
-#: printer/printerdrake.pm:1954 printer/printerdrake.pm:2030
-#: printer/printerdrake.pm:2197 printer/printerdrake.pm:2290
-#: printer/printerdrake.pm:2299 printer/printerdrake.pm:2308
-#: printer/printerdrake.pm:2319 printer/printerdrake.pm:2461
-#: printer/printerdrake.pm:2560 printer/printerdrake.pm:2606
-#: printer/printerdrake.pm:2673 printer/printerdrake.pm:2708
+#: printer/printerdrake.pm:1430 printer/printerdrake.pm:1662
+#: printer/printerdrake.pm:1725 printer/printerdrake.pm:1817
+#: printer/printerdrake.pm:1955 printer/printerdrake.pm:2031
+#: printer/printerdrake.pm:2198 printer/printerdrake.pm:2291
+#: printer/printerdrake.pm:2300 printer/printerdrake.pm:2309
+#: printer/printerdrake.pm:2320 printer/printerdrake.pm:2462
+#: printer/printerdrake.pm:2562 printer/printerdrake.pm:2608
+#: printer/printerdrake.pm:2675 printer/printerdrake.pm:2710
#, c-format
msgid "Could not install the %s packages!"
msgstr ""
@@ -11416,8 +11435,8 @@ msgstr ""
msgid "Skipping Windows/SMB server auto-detection"
msgstr ""
-#: printer/printerdrake.pm:1438 printer/printerdrake.pm:1584
-#: printer/printerdrake.pm:1822 printer/printerdrake.pm:2084
+#: printer/printerdrake.pm:1438 printer/printerdrake.pm:1585
+#: printer/printerdrake.pm:1823 printer/printerdrake.pm:2085
#, c-format
msgid "Printer auto-detection"
msgstr ""
@@ -11427,43 +11446,43 @@ msgstr ""
msgid "Detecting devices..."
msgstr ""
-#: printer/printerdrake.pm:1468
+#: printer/printerdrake.pm:1469
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: printer/printerdrake.pm:1471
+#: printer/printerdrake.pm:1472
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: printer/printerdrake.pm:1475
+#: printer/printerdrake.pm:1476
#, c-format
msgid "Detected %s"
msgstr ""
-#: printer/printerdrake.pm:1480 printer/printerdrake.pm:1507
-#: printer/printerdrake.pm:1525
+#: printer/printerdrake.pm:1481 printer/printerdrake.pm:1508
+#: printer/printerdrake.pm:1526
#, c-format
msgid "Printer on parallel port #%s"
msgstr ""
-#: printer/printerdrake.pm:1486
+#: printer/printerdrake.pm:1487
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr ""
-#: printer/printerdrake.pm:1489
+#: printer/printerdrake.pm:1490
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: printer/printerdrake.pm:1570
+#: printer/printerdrake.pm:1571
#, c-format
msgid "Local Printer"
msgstr ""
-#: printer/printerdrake.pm:1571
+#: printer/printerdrake.pm:1572
#, c-format
msgid ""
"No local printer found! To manually install a printer enter a device name/"
@@ -11472,64 +11491,64 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: printer/printerdrake.pm:1575
+#: printer/printerdrake.pm:1576
#, c-format
msgid "You must enter a device or file name!"
msgstr ""
-#: printer/printerdrake.pm:1585
+#: printer/printerdrake.pm:1586
#, c-format
msgid "No printer found!"
msgstr ""
-#: printer/printerdrake.pm:1593
+#: printer/printerdrake.pm:1594
#, c-format
msgid "Local Printers"
msgstr ""
-#: printer/printerdrake.pm:1594
+#: printer/printerdrake.pm:1595
#, c-format
msgid "Available printers"
msgstr ""
-#: printer/printerdrake.pm:1598 printer/printerdrake.pm:1607
+#: printer/printerdrake.pm:1599 printer/printerdrake.pm:1608
#, c-format
msgid "The following printer was auto-detected. "
msgstr ""
-#: printer/printerdrake.pm:1600
+#: printer/printerdrake.pm:1601
#, 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:1601
+#: printer/printerdrake.pm:1602
#, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
msgstr ""
-#: printer/printerdrake.pm:1602 printer/printerdrake.pm:1611
+#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1612
#, c-format
msgid "Here is a list of all auto-detected printers. "
msgstr ""
-#: printer/printerdrake.pm:1604
+#: printer/printerdrake.pm:1605
#, 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:1605
+#: printer/printerdrake.pm:1606
#, 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:1609
+#: printer/printerdrake.pm:1610
#, c-format
msgid ""
"The configuration of the printer will work fully automatically. If your "
@@ -11537,12 +11556,12 @@ msgid ""
"configuration, turn on \"Manual configuration\"."
msgstr ""
-#: printer/printerdrake.pm:1610
+#: printer/printerdrake.pm:1611
#, c-format
msgid "Currently, no alternative possibility is available"
msgstr ""
-#: printer/printerdrake.pm:1613
+#: printer/printerdrake.pm:1614
#, c-format
msgid ""
"Please choose the printer you want to set up. The configuration of the "
@@ -11551,116 +11570,116 @@ msgid ""
"\"Manual configuration\"."
msgstr ""
-#: printer/printerdrake.pm:1614
+#: printer/printerdrake.pm:1615
#, c-format
msgid "Please choose the printer to which the print jobs should go."
msgstr ""
-#: printer/printerdrake.pm:1616
+#: printer/printerdrake.pm:1617
#, 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:1617
+#: printer/printerdrake.pm:1618
#, c-format
msgid "Please choose the port that your printer is connected to."
msgstr ""
-#: printer/printerdrake.pm:1619
+#: printer/printerdrake.pm:1620
#, 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:1623
+#: printer/printerdrake.pm:1624
#, c-format
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: printer/printerdrake.pm:1663 printer/printerdrake.pm:1726
-#: printer/printerdrake.pm:1818 printer/printerdrake.pm:1956
-#: printer/printerdrake.pm:2032 printer/printerdrake.pm:2199
-#: printer/printerdrake.pm:2292 printer/printerdrake.pm:2301
-#: printer/printerdrake.pm:2310 printer/printerdrake.pm:2321
+#: printer/printerdrake.pm:1664 printer/printerdrake.pm:1727
+#: printer/printerdrake.pm:1819 printer/printerdrake.pm:1957
+#: printer/printerdrake.pm:2033 printer/printerdrake.pm:2200
+#: printer/printerdrake.pm:2293 printer/printerdrake.pm:2302
+#: printer/printerdrake.pm:2311 printer/printerdrake.pm:2322
#, c-format
msgid "Aborting"
msgstr ""
-#: printer/printerdrake.pm:1699
+#: printer/printerdrake.pm:1700
#, c-format
msgid "Remote lpd Printer Options"
msgstr ""
-#: printer/printerdrake.pm:1700
+#: printer/printerdrake.pm:1701
#, 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:1701
+#: printer/printerdrake.pm:1702
#, c-format
msgid "Remote host name"
msgstr ""
-#: printer/printerdrake.pm:1702
+#: printer/printerdrake.pm:1703
#, c-format
msgid "Remote printer name"
msgstr ""
-#: printer/printerdrake.pm:1705
+#: printer/printerdrake.pm:1706
#, c-format
msgid "Remote host name missing!"
msgstr ""
-#: printer/printerdrake.pm:1709
+#: printer/printerdrake.pm:1710
#, c-format
msgid "Remote printer name missing!"
msgstr ""
-#: printer/printerdrake.pm:1739 printer/printerdrake.pm:2215
-#: printer/printerdrake.pm:2340 standalone/drakTermServ:447
+#: printer/printerdrake.pm:1740 printer/printerdrake.pm:2216
+#: printer/printerdrake.pm:2341 standalone/drakTermServ:447
#: standalone/drakTermServ:769 standalone/drakTermServ:785
#: standalone/drakTermServ:1590 standalone/drakTermServ:1599
#: standalone/drakTermServ:1611 standalone/drakbackup:499
#: standalone/drakbackup:605 standalone/drakbackup:640
-#: standalone/drakbackup:741 standalone/drakroam:390
+#: standalone/drakbackup:741 standalone/draknfs:203
#: standalone/draksambashare:623 standalone/draksambashare:790
#: standalone/harddrake2:259
#, c-format
msgid "Information"
msgstr "Informazion"
-#: printer/printerdrake.pm:1739 printer/printerdrake.pm:2215
-#: printer/printerdrake.pm:2340
+#: printer/printerdrake.pm:1740 printer/printerdrake.pm:2216
+#: printer/printerdrake.pm:2341
#, c-format
msgid "Detected model: %s %s"
msgstr ""
-#: printer/printerdrake.pm:1822 printer/printerdrake.pm:2084
+#: printer/printerdrake.pm:1823 printer/printerdrake.pm:2085
#, c-format
msgid "Scanning network..."
msgstr ""
-#: printer/printerdrake.pm:1834 printer/printerdrake.pm:1855
+#: printer/printerdrake.pm:1835 printer/printerdrake.pm:1856
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: printer/printerdrake.pm:1837 printer/printerdrake.pm:1858
+#: printer/printerdrake.pm:1838 printer/printerdrake.pm:1859
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr ""
-#: printer/printerdrake.pm:1879
+#: printer/printerdrake.pm:1880
#, c-format
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: printer/printerdrake.pm:1880
+#: printer/printerdrake.pm:1881
#, c-format
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -11669,54 +11688,54 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: printer/printerdrake.pm:1881
+#: printer/printerdrake.pm:1882
#, 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:1883
+#: printer/printerdrake.pm:1884
#, c-format
msgid "SMB server host"
msgstr ""
-#: printer/printerdrake.pm:1884
+#: printer/printerdrake.pm:1885
#, c-format
msgid "SMB server IP"
msgstr ""
-#: printer/printerdrake.pm:1885 standalone/draksambashare:61
+#: printer/printerdrake.pm:1886 standalone/draksambashare:61
#, c-format
msgid "Share name"
msgstr "Non de condivision"
-#: printer/printerdrake.pm:1888
+#: printer/printerdrake.pm:1889
#, c-format
msgid "Workgroup"
msgstr "Grop di lavôr"
-#: printer/printerdrake.pm:1890
+#: printer/printerdrake.pm:1891
#, c-format
msgid "Auto-detected"
msgstr ""
-#: printer/printerdrake.pm:1900
+#: printer/printerdrake.pm:1901
#, c-format
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: printer/printerdrake.pm:1904
+#: printer/printerdrake.pm:1905
#, c-format
msgid "Samba share name missing!"
msgstr ""
-#: printer/printerdrake.pm:1910
+#: printer/printerdrake.pm:1911
#, c-format
msgid "SECURITY WARNING!"
msgstr ""
-#: printer/printerdrake.pm:1911
+#: printer/printerdrake.pm:1912
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -11740,7 +11759,7 @@ msgid ""
"\n"
msgstr ""
-#: printer/printerdrake.pm:1921
+#: printer/printerdrake.pm:1922
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -11749,7 +11768,7 @@ msgid ""
"\n"
msgstr ""
-#: printer/printerdrake.pm:1924
+#: printer/printerdrake.pm:1925
#, c-format
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
@@ -11758,12 +11777,12 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: printer/printerdrake.pm:2003
+#: printer/printerdrake.pm:2004
#, c-format
msgid "NetWare Printer Options"
msgstr ""
-#: printer/printerdrake.pm:2004
+#: printer/printerdrake.pm:2005
#, c-format
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -11772,49 +11791,49 @@ msgid ""
"name and password."
msgstr ""
-#: printer/printerdrake.pm:2005
+#: printer/printerdrake.pm:2006
#, c-format
msgid "Printer Server"
msgstr ""
-#: printer/printerdrake.pm:2006
+#: printer/printerdrake.pm:2007
#, c-format
msgid "Print Queue Name"
msgstr ""
-#: printer/printerdrake.pm:2011
+#: printer/printerdrake.pm:2012
#, c-format
msgid "NCP server name missing!"
msgstr ""
-#: printer/printerdrake.pm:2015
+#: printer/printerdrake.pm:2016
#, c-format
msgid "NCP queue name missing!"
msgstr ""
-#: printer/printerdrake.pm:2096 printer/printerdrake.pm:2117
+#: printer/printerdrake.pm:2097 printer/printerdrake.pm:2118
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: printer/printerdrake.pm:2099 printer/printerdrake.pm:2120
+#: printer/printerdrake.pm:2100 printer/printerdrake.pm:2121
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: printer/printerdrake.pm:2142
+#: printer/printerdrake.pm:2143
#, c-format
msgid "TCP/Socket Printer Options"
msgstr ""
-#: printer/printerdrake.pm:2144
+#: printer/printerdrake.pm:2145
#, 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:2145
+#: printer/printerdrake.pm:2146
#, c-format
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -11823,27 +11842,27 @@ msgid ""
"vary. See the manual of your hardware."
msgstr ""
-#: printer/printerdrake.pm:2149
+#: printer/printerdrake.pm:2150
#, c-format
msgid "Printer host name or IP missing!"
msgstr ""
-#: printer/printerdrake.pm:2178
+#: printer/printerdrake.pm:2179
#, c-format
msgid "Printer host name or IP"
msgstr ""
-#: printer/printerdrake.pm:2241
+#: printer/printerdrake.pm:2242
#, c-format
msgid "Refreshing Device URI list..."
msgstr ""
-#: printer/printerdrake.pm:2244 printer/printerdrake.pm:2246
+#: printer/printerdrake.pm:2245 printer/printerdrake.pm:2247
#, c-format
msgid "Printer Device URI"
msgstr ""
-#: printer/printerdrake.pm:2245
+#: printer/printerdrake.pm:2246
#, c-format
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
@@ -11851,34 +11870,34 @@ msgid ""
"are supported by all the spoolers."
msgstr ""
-#: printer/printerdrake.pm:2271
+#: printer/printerdrake.pm:2272
#, c-format
msgid "A valid URI must be entered!"
msgstr ""
-#: printer/printerdrake.pm:2376
+#: printer/printerdrake.pm:2377
#, c-format
msgid "Pipe into command"
msgstr ""
-#: printer/printerdrake.pm:2377
+#: printer/printerdrake.pm:2378
#, 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:2378
+#: printer/printerdrake.pm:2379
#, c-format
msgid "Command line"
msgstr ""
-#: printer/printerdrake.pm:2382
+#: printer/printerdrake.pm:2383
#, c-format
msgid "A command line must be entered!"
msgstr ""
-#: printer/printerdrake.pm:2422
+#: printer/printerdrake.pm:2423
#, c-format
msgid ""
"On many HP printers there are special functions available, maintenance (ink "
@@ -11887,14 +11906,14 @@ msgid ""
"printers with card readers. "
msgstr ""
-#: printer/printerdrake.pm:2424
+#: printer/printerdrake.pm:2425
#, c-format
msgid ""
"To access these extra functions on your HP printer, it must be set up with "
"the appropriate software: "
msgstr ""
-#: printer/printerdrake.pm:2425
+#: printer/printerdrake.pm:2426
#, c-format
msgid ""
"Either with the newer HPLIP which allows printer maintenance through the "
@@ -11902,33 +11921,33 @@ msgid ""
"newer PhotoSmart models "
msgstr ""
-#: printer/printerdrake.pm:2426
+#: printer/printerdrake.pm:2427
#, c-format
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 ""
-#: printer/printerdrake.pm:2428
+#: printer/printerdrake.pm:2429
#, c-format
msgid "What is your choice (choose \"None\" for non-HP printers)? "
msgstr ""
-#: printer/printerdrake.pm:2429 printer/printerdrake.pm:2430
-#: printer/printerdrake.pm:2456 printer/printerdrake.pm:2462
-#: printer/printerdrake.pm:2488
+#: printer/printerdrake.pm:2430 printer/printerdrake.pm:2431
+#: printer/printerdrake.pm:2457 printer/printerdrake.pm:2463
+#: printer/printerdrake.pm:2489
#, c-format
msgid "HPLIP"
msgstr ""
-#: printer/printerdrake.pm:2429 printer/printerdrake.pm:2432
-#: printer/printerdrake.pm:2601 printer/printerdrake.pm:2607
-#: printer/printerdrake.pm:2618
+#: printer/printerdrake.pm:2430 printer/printerdrake.pm:2433
+#: printer/printerdrake.pm:2603 printer/printerdrake.pm:2609
+#: printer/printerdrake.pm:2620
#, c-format
msgid "HPOJ"
msgstr ""
-#: printer/printerdrake.pm:2437
+#: printer/printerdrake.pm:2438
#, c-format
msgid ""
"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
@@ -11936,105 +11955,105 @@ msgid ""
"IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
msgstr ""
-#: printer/printerdrake.pm:2456 printer/printerdrake.pm:2601
+#: printer/printerdrake.pm:2457 printer/printerdrake.pm:2603
#, c-format
msgid "Installing %s package..."
msgstr ""
-#: printer/printerdrake.pm:2463 printer/printerdrake.pm:2608
+#: printer/printerdrake.pm:2464 printer/printerdrake.pm:2610
#, c-format
msgid "Only printing will be possible on the %s."
msgstr ""
-#: printer/printerdrake.pm:2478
+#: printer/printerdrake.pm:2479
#, c-format
msgid "Could not remove your old HPOJ configuration file %s for your %s! "
msgstr ""
-#: printer/printerdrake.pm:2480
+#: printer/printerdrake.pm:2481
#, c-format
msgid "Please remove the file manually and restart HPOJ."
msgstr ""
-#: printer/printerdrake.pm:2488 printer/printerdrake.pm:2618
+#: printer/printerdrake.pm:2489 printer/printerdrake.pm:2620
#, c-format
msgid "Checking device and configuring %s..."
msgstr ""
-#: printer/printerdrake.pm:2509
+#: printer/printerdrake.pm:2510
#, fuzzy, c-format
msgid "Which printer do you want to set up with HPLIP?"
msgstr "Cuâle sorte di vôs vuelistu zontâ?"
-#: printer/printerdrake.pm:2549 printer/printerdrake.pm:2662
+#: printer/printerdrake.pm:2551 printer/printerdrake.pm:2664
#, c-format
msgid "Installing SANE packages..."
msgstr ""
-#: printer/printerdrake.pm:2562 printer/printerdrake.pm:2675
+#: printer/printerdrake.pm:2564 printer/printerdrake.pm:2677
#, c-format
msgid "Scanning on the %s will not be possible."
msgstr ""
-#: printer/printerdrake.pm:2577
+#: printer/printerdrake.pm:2579
#, c-format
msgid "Using and Maintaining your %s"
msgstr ""
-#: printer/printerdrake.pm:2702
+#: printer/printerdrake.pm:2704
#, c-format
msgid "Installing mtools packages..."
msgstr ""
-#: printer/printerdrake.pm:2710
+#: printer/printerdrake.pm:2712
#, c-format
msgid "Photo memory card access on the %s will not be possible."
msgstr ""
-#: printer/printerdrake.pm:2726
+#: printer/printerdrake.pm:2728
#, c-format
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: printer/printerdrake.pm:2735
+#: printer/printerdrake.pm:2737
#, c-format
msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: printer/printerdrake.pm:2752
+#: printer/printerdrake.pm:2754
#, fuzzy, c-format
msgid "Configuring device..."
msgstr "Periferichis configuradis:\n"
-#: printer/printerdrake.pm:2786
+#: printer/printerdrake.pm:2791
#, c-format
msgid "Making printer port available for CUPS..."
msgstr ""
-#: printer/printerdrake.pm:2795 printer/printerdrake.pm:3064
-#: printer/printerdrake.pm:3217
+#: printer/printerdrake.pm:2801 printer/printerdrake.pm:3070
+#: printer/printerdrake.pm:3223
#, c-format
msgid "Reading printer database..."
msgstr ""
-#: printer/printerdrake.pm:3022
+#: printer/printerdrake.pm:3028
#, c-format
msgid "Enter Printer Name and Comments"
msgstr ""
-#: printer/printerdrake.pm:3026 printer/printerdrake.pm:4349
+#: printer/printerdrake.pm:3032 printer/printerdrake.pm:4355
#, c-format
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: printer/printerdrake.pm:3032 printer/printerdrake.pm:4354
+#: printer/printerdrake.pm:3038 printer/printerdrake.pm:4360
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: printer/printerdrake.pm:3039
+#: printer/printerdrake.pm:3045
#, c-format
msgid ""
"The printer name \"%s\" has more than 12 characters which can make the "
@@ -12042,42 +12061,42 @@ msgid ""
"name?"
msgstr ""
-#: printer/printerdrake.pm:3048
+#: printer/printerdrake.pm:3054
#, 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:3049
+#: printer/printerdrake.pm:3055
#, c-format
msgid "Name of printer"
msgstr ""
-#: printer/printerdrake.pm:3050 standalone/drakconnect:592
+#: printer/printerdrake.pm:3056 standalone/drakconnect:592
#: standalone/harddrake2:39 standalone/printerdrake:222
#: standalone/printerdrake:229
#, c-format
msgid "Description"
msgstr "Descrizion"
-#: printer/printerdrake.pm:3051 standalone/printerdrake:222
+#: printer/printerdrake.pm:3057 standalone/printerdrake:222
#: standalone/printerdrake:229
#, c-format
msgid "Location"
msgstr ""
-#: printer/printerdrake.pm:3069
+#: printer/printerdrake.pm:3075
#, c-format
msgid "Preparing printer database..."
msgstr ""
-#: printer/printerdrake.pm:3195
+#: printer/printerdrake.pm:3201
#, c-format
msgid "Your printer model"
msgstr ""
-#: printer/printerdrake.pm:3196
+#: printer/printerdrake.pm:3202
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -12092,18 +12111,18 @@ msgid ""
"%s"
msgstr ""
-#: printer/printerdrake.pm:3201 printer/printerdrake.pm:3204
+#: printer/printerdrake.pm:3207 printer/printerdrake.pm:3210
#, c-format
msgid "The model is correct"
msgstr ""
-#: printer/printerdrake.pm:3202 printer/printerdrake.pm:3203
-#: printer/printerdrake.pm:3206
+#: printer/printerdrake.pm:3208 printer/printerdrake.pm:3209
+#: printer/printerdrake.pm:3212
#, c-format
msgid "Select model manually"
msgstr ""
-#: printer/printerdrake.pm:3230
+#: printer/printerdrake.pm:3236
#, c-format
msgid ""
"\n"
@@ -12113,38 +12132,38 @@ msgid ""
"\"Raw printer\" is highlighted."
msgstr ""
-#: printer/printerdrake.pm:3249
+#: printer/printerdrake.pm:3255
#, c-format
msgid "Install a manufacturer-supplied PPD file"
msgstr ""
-#: printer/printerdrake.pm:3281
+#: printer/printerdrake.pm:3287
#, c-format
msgid ""
"Every PostScript printer is delivered with a PPD file which describes the "
"printer's options and features."
msgstr ""
-#: printer/printerdrake.pm:3282
+#: printer/printerdrake.pm:3288
#, 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:3283
+#: printer/printerdrake.pm:3289
#, c-format
msgid "You can find the PPD files also on the manufacturer's web sites."
msgstr ""
-#: printer/printerdrake.pm:3284
+#: printer/printerdrake.pm:3290
#, 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:3285
+#: printer/printerdrake.pm:3291
#, c-format
msgid ""
"Installing the printer's PPD file and using it when setting up the printer "
@@ -12152,58 +12171,58 @@ msgid ""
"printer's hardware"
msgstr ""
-#: printer/printerdrake.pm:3286
+#: printer/printerdrake.pm:3292
#, 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:3288
+#: printer/printerdrake.pm:3294
#, c-format
msgid "Install PPD file from"
msgstr ""
-#: printer/printerdrake.pm:3291 printer/printerdrake.pm:3299
+#: printer/printerdrake.pm:3297 printer/printerdrake.pm:3305
#: standalone/scannerdrake:183 standalone/scannerdrake:192
#: standalone/scannerdrake:242 standalone/scannerdrake:250
#, c-format
msgid "Floppy Disk"
msgstr ""
-#: printer/printerdrake.pm:3292 printer/printerdrake.pm:3301
+#: printer/printerdrake.pm:3298 printer/printerdrake.pm:3307
#: standalone/scannerdrake:184 standalone/scannerdrake:194
#: standalone/scannerdrake:243 standalone/scannerdrake:252
#, c-format
msgid "Other place"
msgstr ""
-#: printer/printerdrake.pm:3307
+#: printer/printerdrake.pm:3313
#, c-format
msgid "Select PPD file"
msgstr ""
-#: printer/printerdrake.pm:3311
+#: printer/printerdrake.pm:3317
#, c-format
msgid "The PPD file %s does not exist or is unreadable!"
msgstr ""
-#: printer/printerdrake.pm:3317
+#: printer/printerdrake.pm:3323
#, c-format
msgid "The PPD file %s does not conform with the PPD specifications!"
msgstr ""
-#: printer/printerdrake.pm:3328
+#: printer/printerdrake.pm:3334
#, c-format
msgid "Installing PPD file..."
msgstr ""
-#: printer/printerdrake.pm:3446
+#: printer/printerdrake.pm:3452
#, c-format
msgid "OKI winprinter configuration"
msgstr ""
-#: printer/printerdrake.pm:3447
+#: printer/printerdrake.pm:3453
#, c-format
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
@@ -12214,12 +12233,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: printer/printerdrake.pm:3472 printer/printerdrake.pm:3502
+#: printer/printerdrake.pm:3478 printer/printerdrake.pm:3508
#, c-format
msgid "Lexmark inkjet configuration"
msgstr ""
-#: printer/printerdrake.pm:3473
+#: printer/printerdrake.pm:3479
#, c-format
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -12228,7 +12247,7 @@ msgid ""
"to."
msgstr ""
-#: printer/printerdrake.pm:3503
+#: printer/printerdrake.pm:3509
#, c-format
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
@@ -12241,12 +12260,12 @@ msgid ""
"adjust the head alignment settings with this program."
msgstr ""
-#: printer/printerdrake.pm:3513
+#: printer/printerdrake.pm:3519
#, c-format
msgid "Lexmark X125 configuration"
msgstr ""
-#: printer/printerdrake.pm:3514
+#: printer/printerdrake.pm:3520
#, c-format
msgid ""
"The driver for this printer only supports printers locally connected via "
@@ -12255,12 +12274,12 @@ msgid ""
"connected to."
msgstr ""
-#: printer/printerdrake.pm:3536
+#: printer/printerdrake.pm:3542
#, fuzzy, c-format
msgid "Samsung ML/QL-85G configuration"
msgstr "Configurazion automatiche"
-#: printer/printerdrake.pm:3537 printer/printerdrake.pm:3564
+#: printer/printerdrake.pm:3543 printer/printerdrake.pm:3570
#, c-format
msgid ""
"The driver for this printer only supports printers locally connected on the "
@@ -12269,17 +12288,17 @@ msgid ""
"port or configure it on the machine where it is connected to."
msgstr ""
-#: printer/printerdrake.pm:3563
+#: printer/printerdrake.pm:3569
#, fuzzy, c-format
msgid "Canon LBP-460/660 configuration"
msgstr "Configurazion automatiche"
-#: printer/printerdrake.pm:3590
+#: printer/printerdrake.pm:3596
#, fuzzy, c-format
msgid "Canon LBP-810/1120 (CAPT) configuration"
msgstr "Configurazion automatiche"
-#: printer/printerdrake.pm:3591
+#: printer/printerdrake.pm:3597
#, c-format
msgid ""
"The driver for this printer only supports printers locally connected via "
@@ -12288,12 +12307,12 @@ msgid ""
"where it is directly connected to."
msgstr ""
-#: printer/printerdrake.pm:3598
+#: printer/printerdrake.pm:3604
#, c-format
msgid "Firmware-Upload for HP LaserJet 1000"
msgstr ""
-#: printer/printerdrake.pm:3748
+#: printer/printerdrake.pm:3754
#, c-format
msgid ""
"Printer default settings\n"
@@ -12304,39 +12323,39 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: printer/printerdrake.pm:3873
+#: printer/printerdrake.pm:3879
#, c-format
msgid "Printer default settings"
msgstr ""
-#: printer/printerdrake.pm:3880
+#: printer/printerdrake.pm:3886
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: printer/printerdrake.pm:3884
+#: printer/printerdrake.pm:3890
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: printer/printerdrake.pm:3888
+#: printer/printerdrake.pm:3894
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: printer/printerdrake.pm:3940
+#: printer/printerdrake.pm:3946
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
-#: printer/printerdrake.pm:3956
+#: printer/printerdrake.pm:3962
#, c-format
msgid "Test pages"
msgstr ""
-#: printer/printerdrake.pm:3957
+#: printer/printerdrake.pm:3963
#, c-format
msgid ""
"Please select the test pages you want to print.\n"
@@ -12345,47 +12364,47 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: printer/printerdrake.pm:3961
+#: printer/printerdrake.pm:3967
#, c-format
msgid "No test pages"
msgstr ""
-#: printer/printerdrake.pm:3962
+#: printer/printerdrake.pm:3968
#, c-format
msgid "Print"
msgstr ""
-#: printer/printerdrake.pm:3987
+#: printer/printerdrake.pm:3993
#, c-format
msgid "Standard test page"
msgstr ""
-#: printer/printerdrake.pm:3990
+#: printer/printerdrake.pm:3996
#, c-format
msgid "Alternative test page (Letter)"
msgstr ""
-#: printer/printerdrake.pm:3993
+#: printer/printerdrake.pm:3999
#, c-format
msgid "Alternative test page (A4)"
msgstr ""
-#: printer/printerdrake.pm:3995
+#: printer/printerdrake.pm:4001
#, c-format
msgid "Photo test page"
msgstr ""
-#: printer/printerdrake.pm:4008 printer/printerdrake.pm:4192
+#: printer/printerdrake.pm:4014 printer/printerdrake.pm:4198
#, c-format
msgid "Printing test page(s)..."
msgstr ""
-#: printer/printerdrake.pm:4028
+#: printer/printerdrake.pm:4034
#, c-format
msgid "Skipping photo test page."
msgstr ""
-#: printer/printerdrake.pm:4045
+#: printer/printerdrake.pm:4051
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -12395,24 +12414,24 @@ msgid ""
"\n"
msgstr ""
-#: printer/printerdrake.pm:4049
+#: printer/printerdrake.pm:4055
#, 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:4059
+#: printer/printerdrake.pm:4065
#, c-format
msgid "Did it work properly?"
msgstr ""
-#: printer/printerdrake.pm:4083 printer/printerdrake.pm:5466
+#: printer/printerdrake.pm:4089 printer/printerdrake.pm:5472
#, c-format
msgid "Raw printer"
msgstr ""
-#: printer/printerdrake.pm:4121
+#: printer/printerdrake.pm:4127
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -12421,7 +12440,7 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: printer/printerdrake.pm:4123
+#: printer/printerdrake.pm:4129
#, c-format
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
@@ -12429,8 +12448,8 @@ msgid ""
"because the file to print is provided by the application.\n"
msgstr ""
-#: printer/printerdrake.pm:4126 printer/printerdrake.pm:4143
-#: printer/printerdrake.pm:4153
+#: printer/printerdrake.pm:4132 printer/printerdrake.pm:4149
+#: printer/printerdrake.pm:4159
#, c-format
msgid ""
"\n"
@@ -12439,7 +12458,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: printer/printerdrake.pm:4129 printer/printerdrake.pm:4169
+#: printer/printerdrake.pm:4135 printer/printerdrake.pm:4175
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -12447,22 +12466,22 @@ msgid ""
"\n"
msgstr ""
-#: printer/printerdrake.pm:4133
+#: printer/printerdrake.pm:4139
#, c-format
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: printer/printerdrake.pm:4138 printer/printerdrake.pm:4148
+#: printer/printerdrake.pm:4144 printer/printerdrake.pm:4154
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: printer/printerdrake.pm:4140 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4160
+#: printer/printerdrake.pm:4146 printer/printerdrake.pm:4156
+#: printer/printerdrake.pm:4166
#, c-format
msgid ""
"This command you can also use in the \"Printing command\" field of the "
@@ -12470,21 +12489,21 @@ msgid ""
"because the file to print is provided by the application.\n"
msgstr ""
-#: printer/printerdrake.pm:4145 printer/printerdrake.pm:4155
+#: printer/printerdrake.pm:4151 printer/printerdrake.pm:4161
#, 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:4158
+#: printer/printerdrake.pm:4164
#, 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:4162
+#: printer/printerdrake.pm:4168
#, c-format
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
@@ -12495,7 +12514,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: printer/printerdrake.pm:4166
+#: printer/printerdrake.pm:4172
#, c-format
msgid ""
"\n"
@@ -12504,37 +12523,37 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: printer/printerdrake.pm:4176
+#: printer/printerdrake.pm:4182
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr ""
-#: printer/printerdrake.pm:4177
+#: printer/printerdrake.pm:4183
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr ""
-#: printer/printerdrake.pm:4179
+#: printer/printerdrake.pm:4185
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr ""
-#: printer/printerdrake.pm:4181
+#: printer/printerdrake.pm:4187
#, c-format
msgid "Using/Maintaining the printer \"%s\""
msgstr ""
-#: printer/printerdrake.pm:4182
+#: printer/printerdrake.pm:4188
#, c-format
msgid "Printing on the printer \"%s\""
msgstr ""
-#: printer/printerdrake.pm:4188
+#: printer/printerdrake.pm:4194
#, c-format
msgid "Print option list"
msgstr ""
-#: printer/printerdrake.pm:4210
+#: printer/printerdrake.pm:4216
#, c-format
msgid ""
"Your %s is set up with HP's HPLIP driver software. This way many special "
@@ -12542,14 +12561,14 @@ msgid ""
"\n"
msgstr ""
-#: printer/printerdrake.pm:4213
+#: printer/printerdrake.pm:4219
#, 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:4214
+#: printer/printerdrake.pm:4220
#, c-format
msgid ""
"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
@@ -12557,14 +12576,14 @@ msgid ""
"\n"
msgstr ""
-#: printer/printerdrake.pm:4218
+#: printer/printerdrake.pm:4224
#, c-format
msgid ""
"The memory card readers in your printer can be accessed like a usual USB "
"mass storage device. "
msgstr ""
-#: printer/printerdrake.pm:4219
+#: printer/printerdrake.pm:4225
#, c-format
msgid ""
"After inserting a card a hard disk icon to access the card should appear on "
@@ -12572,7 +12591,7 @@ msgid ""
"\n"
msgstr ""
-#: printer/printerdrake.pm:4221
+#: printer/printerdrake.pm:4227
#, c-format
msgid ""
"The memory card readers in your printer can be accessed using HP's Printer "
@@ -12580,7 +12599,7 @@ msgid ""
"Photo Cards...\" button on the \"Functions\" tab. "
msgstr ""
-#: printer/printerdrake.pm:4222
+#: printer/printerdrake.pm:4228
#, c-format
msgid ""
"Note that this is very slow, reading the pictures from the camera or a USB "
@@ -12588,7 +12607,7 @@ msgid ""
"\n"
msgstr ""
-#: printer/printerdrake.pm:4225
+#: printer/printerdrake.pm:4231
#, c-format
msgid ""
"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
@@ -12596,27 +12615,27 @@ msgid ""
"\n"
msgstr ""
-#: printer/printerdrake.pm:4226
+#: printer/printerdrake.pm:4232
#, c-format
msgid " - Ink level/status info\n"
msgstr ""
-#: printer/printerdrake.pm:4227
+#: printer/printerdrake.pm:4233
#, c-format
msgid " - Ink nozzle cleaning\n"
msgstr ""
-#: printer/printerdrake.pm:4228
+#: printer/printerdrake.pm:4234
#, c-format
msgid " - Print head alignment\n"
msgstr ""
-#: printer/printerdrake.pm:4229
+#: printer/printerdrake.pm:4235
#, c-format
msgid " - Color calibration\n"
msgstr ""
-#: printer/printerdrake.pm:4244
+#: printer/printerdrake.pm:4250
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -12632,7 +12651,7 @@ msgid ""
"scanner on the network."
msgstr ""
-#: printer/printerdrake.pm:4270
+#: printer/printerdrake.pm:4276
#, c-format
msgid ""
"Your printer was configured automatically to give you access to the photo "
@@ -12646,13 +12665,13 @@ msgid ""
"of the file lists."
msgstr ""
-#: printer/printerdrake.pm:4313 printer/printerdrake.pm:4340
-#: printer/printerdrake.pm:4375
+#: printer/printerdrake.pm:4319 printer/printerdrake.pm:4346
+#: printer/printerdrake.pm:4381
#, c-format
msgid "Transfer printer configuration"
msgstr ""
-#: printer/printerdrake.pm:4314
+#: printer/printerdrake.pm:4320
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -12662,33 +12681,33 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: printer/printerdrake.pm:4317
+#: printer/printerdrake.pm:4323
#, 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:4319
+#: printer/printerdrake.pm:4325
#, c-format
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: printer/printerdrake.pm:4321
+#: printer/printerdrake.pm:4327
#, c-format
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: printer/printerdrake.pm:4323
+#: printer/printerdrake.pm:4329
#, c-format
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: printer/printerdrake.pm:4324
+#: printer/printerdrake.pm:4330
#, c-format
msgid ""
"\n"
@@ -12696,7 +12715,7 @@ msgid ""
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: printer/printerdrake.pm:4325
+#: printer/printerdrake.pm:4331
#, c-format
msgid ""
"\n"
@@ -12704,17 +12723,17 @@ msgid ""
"\"Transfer\"."
msgstr ""
-#: printer/printerdrake.pm:4328
+#: printer/printerdrake.pm:4334
#, c-format
msgid "Do not transfer printers"
msgstr ""
-#: printer/printerdrake.pm:4329 printer/printerdrake.pm:4345
+#: printer/printerdrake.pm:4335 printer/printerdrake.pm:4351
#, c-format
msgid "Transfer"
msgstr ""
-#: printer/printerdrake.pm:4341
+#: printer/printerdrake.pm:4347
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -12722,45 +12741,45 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: printer/printerdrake.pm:4362
+#: printer/printerdrake.pm:4368
#, c-format
msgid "New printer name"
msgstr ""
-#: printer/printerdrake.pm:4365
+#: printer/printerdrake.pm:4371
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: printer/printerdrake.pm:4376
+#: printer/printerdrake.pm:4382
#, 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:4386
+#: printer/printerdrake.pm:4392
#, c-format
msgid "Refreshing printer data..."
msgstr ""
-#: printer/printerdrake.pm:4396
+#: printer/printerdrake.pm:4402
#, c-format
msgid "Starting network..."
msgstr ""
-#: printer/printerdrake.pm:4440 printer/printerdrake.pm:4444
-#: printer/printerdrake.pm:4446
+#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4450
+#: printer/printerdrake.pm:4452
#, c-format
msgid "Configure the network now"
msgstr ""
-#: printer/printerdrake.pm:4441
+#: printer/printerdrake.pm:4447
#, c-format
msgid "Network functionality not configured"
msgstr ""
-#: printer/printerdrake.pm:4442
+#: printer/printerdrake.pm:4448
#, c-format
msgid ""
"You are going to configure a remote printer. This needs working network "
@@ -12769,12 +12788,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: printer/printerdrake.pm:4445
+#: printer/printerdrake.pm:4451
#, c-format
msgid "Go on without configuring the network"
msgstr ""
-#: printer/printerdrake.pm:4476
+#: printer/printerdrake.pm:4482
#, c-format
msgid ""
"The network configuration done during the installation cannot be started "
@@ -12784,7 +12803,7 @@ msgid ""
"also using the %s Control Center, section \"Hardware\"/\"Printer\""
msgstr ""
-#: printer/printerdrake.pm:4477
+#: printer/printerdrake.pm:4483
#, c-format
msgid ""
"The network access was not running and could not be started. Please check "
@@ -12792,27 +12811,27 @@ msgid ""
"printer again."
msgstr ""
-#: printer/printerdrake.pm:4487
+#: printer/printerdrake.pm:4493
#, c-format
msgid "Restarting printing system..."
msgstr ""
-#: printer/printerdrake.pm:4518
+#: printer/printerdrake.pm:4524
#, c-format
msgid "high"
msgstr ""
-#: printer/printerdrake.pm:4518
+#: printer/printerdrake.pm:4524
#, c-format
msgid "paranoid"
msgstr ""
-#: printer/printerdrake.pm:4520
+#: printer/printerdrake.pm:4526
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: printer/printerdrake.pm:4521
+#: printer/printerdrake.pm:4527
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -12827,12 +12846,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: printer/printerdrake.pm:4557
+#: printer/printerdrake.pm:4563
#, c-format
msgid "Starting the printing system at boot time"
msgstr ""
-#: printer/printerdrake.pm:4558
+#: printer/printerdrake.pm:4564
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -12846,32 +12865,32 @@ msgid ""
"again?"
msgstr ""
-#: printer/printerdrake.pm:4581
+#: printer/printerdrake.pm:4587
#, c-format
msgid "Checking installed software..."
msgstr ""
-#: printer/printerdrake.pm:4587
+#: printer/printerdrake.pm:4593
#, c-format
msgid "Removing %s..."
msgstr ""
-#: printer/printerdrake.pm:4591
+#: printer/printerdrake.pm:4597
#, c-format
msgid "Could not remove the %s printing system!"
msgstr ""
-#: printer/printerdrake.pm:4611
+#: printer/printerdrake.pm:4617
#, c-format
msgid "Installing %s..."
msgstr ""
-#: printer/printerdrake.pm:4615
+#: printer/printerdrake.pm:4621
#, c-format
msgid "Could not install the %s printing system!"
msgstr ""
-#: printer/printerdrake.pm:4683
+#: printer/printerdrake.pm:4689
#, c-format
msgid ""
"In this mode there is no local printing system, all printing requests go "
@@ -12880,46 +12899,46 @@ msgid ""
"be printed at all from this machine."
msgstr ""
-#: printer/printerdrake.pm:4685
+#: printer/printerdrake.pm:4691
#, 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:4699
+#: printer/printerdrake.pm:4705
#, c-format
msgid "Name or IP of remote server:"
msgstr ""
-#: printer/printerdrake.pm:4719
+#: printer/printerdrake.pm:4725
#, c-format
msgid "Setting Default Printer..."
msgstr ""
-#: printer/printerdrake.pm:4739
+#: printer/printerdrake.pm:4745
#, c-format
msgid "Local CUPS printing system or remote CUPS server?"
msgstr ""
-#: printer/printerdrake.pm:4740
+#: printer/printerdrake.pm:4746
#, c-format
msgid "The CUPS printing system can be used in two ways: "
msgstr ""
-#: printer/printerdrake.pm:4742
+#: printer/printerdrake.pm:4748
#, c-format
msgid "1. The CUPS printing system can run locally. "
msgstr ""
-#: printer/printerdrake.pm:4743
+#: printer/printerdrake.pm:4749
#, 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:4744
+#: printer/printerdrake.pm:4750
#, c-format
msgid ""
"Disadvantage of this approach is, that more resources on the local machine "
@@ -12928,12 +12947,12 @@ msgid ""
"(port 631) is opened. "
msgstr ""
-#: printer/printerdrake.pm:4746
+#: printer/printerdrake.pm:4752
#, c-format
msgid "2. All printing requests are immediately sent to a remote CUPS server. "
msgstr ""
-#: printer/printerdrake.pm:4747
+#: printer/printerdrake.pm:4753
#, c-format
msgid ""
"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
@@ -12941,55 +12960,55 @@ msgid ""
"print queues is installed, so less memory and disk space is used. "
msgstr ""
-#: printer/printerdrake.pm:4748
+#: printer/printerdrake.pm:4754
#, 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:4750
+#: printer/printerdrake.pm:4756
#, c-format
msgid "How should CUPS be set up on your machine?"
msgstr ""
-#: printer/printerdrake.pm:4754 printer/printerdrake.pm:4769
-#: printer/printerdrake.pm:4773 printer/printerdrake.pm:4779
+#: printer/printerdrake.pm:4760 printer/printerdrake.pm:4775
+#: printer/printerdrake.pm:4779 printer/printerdrake.pm:4785
#, c-format
msgid "Remote server, specify Name or IP here:"
msgstr ""
-#: printer/printerdrake.pm:4768
+#: printer/printerdrake.pm:4774
#, c-format
msgid "Local CUPS printing system"
msgstr ""
-#: printer/printerdrake.pm:4807
+#: printer/printerdrake.pm:4813
#, c-format
msgid "Select Printer Spooler"
msgstr ""
-#: printer/printerdrake.pm:4808
+#: printer/printerdrake.pm:4814
#, c-format
msgid "Which printing system (spooler) do you want to use?"
msgstr ""
-#: printer/printerdrake.pm:4857
+#: printer/printerdrake.pm:4863
#, c-format
msgid "Failed to configure printer \"%s\"!"
msgstr ""
-#: printer/printerdrake.pm:4872
+#: printer/printerdrake.pm:4878
#, c-format
msgid "Installing Foomatic..."
msgstr ""
-#: printer/printerdrake.pm:4878
+#: printer/printerdrake.pm:4884
#, c-format
msgid "Could not install %s packages, %s cannot be started!"
msgstr ""
-#: printer/printerdrake.pm:5073
+#: printer/printerdrake.pm:5079
#, c-format
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -12997,152 +13016,152 @@ msgid ""
"it. "
msgstr ""
-#: printer/printerdrake.pm:5103
+#: printer/printerdrake.pm:5109
#, c-format
msgid "Display all available remote CUPS printers"
msgstr ""
-#: printer/printerdrake.pm:5104
+#: printer/printerdrake.pm:5110
#, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: printer/printerdrake.pm:5115
+#: printer/printerdrake.pm:5121
#, c-format
msgid "CUPS configuration"
msgstr ""
-#: printer/printerdrake.pm:5127
+#: printer/printerdrake.pm:5133
#, c-format
msgid "Change the printing system"
msgstr ""
-#: printer/printerdrake.pm:5136
+#: printer/printerdrake.pm:5142
#, c-format
msgid "Normal Mode"
msgstr ""
-#: printer/printerdrake.pm:5137
+#: printer/printerdrake.pm:5143
#, c-format
msgid "Expert Mode"
msgstr ""
-#: printer/printerdrake.pm:5409 printer/printerdrake.pm:5467
-#: printer/printerdrake.pm:5553 printer/printerdrake.pm:5562
+#: printer/printerdrake.pm:5415 printer/printerdrake.pm:5473
+#: printer/printerdrake.pm:5559 printer/printerdrake.pm:5568
#, c-format
msgid "Printer options"
msgstr ""
-#: printer/printerdrake.pm:5445
+#: printer/printerdrake.pm:5451
#, c-format
msgid "Modify printer configuration"
msgstr ""
-#: printer/printerdrake.pm:5447
+#: printer/printerdrake.pm:5453
#, c-format
msgid ""
"Printer %s%s\n"
"What do you want to modify on this printer?"
msgstr ""
-#: printer/printerdrake.pm:5452
+#: printer/printerdrake.pm:5458
#, fuzzy, c-format
msgid "This printer is disabled"
msgstr "No rivi a cambiâ le dimension di cheste dimension"
-#: printer/printerdrake.pm:5454
+#: printer/printerdrake.pm:5460
#, c-format
msgid "Do it!"
msgstr ""
-#: printer/printerdrake.pm:5459 printer/printerdrake.pm:5521
+#: printer/printerdrake.pm:5465 printer/printerdrake.pm:5527
#, c-format
msgid "Printer connection type"
msgstr ""
-#: printer/printerdrake.pm:5460 printer/printerdrake.pm:5527
+#: printer/printerdrake.pm:5466 printer/printerdrake.pm:5533
#, c-format
msgid "Printer name, description, location"
msgstr ""
-#: printer/printerdrake.pm:5462 printer/printerdrake.pm:5546
+#: printer/printerdrake.pm:5468 printer/printerdrake.pm:5552
#, c-format
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: printer/printerdrake.pm:5463 printer/printerdrake.pm:5547
+#: printer/printerdrake.pm:5469 printer/printerdrake.pm:5553
#, c-format
msgid "Printer manufacturer, model"
msgstr ""
-#: printer/printerdrake.pm:5469 printer/printerdrake.pm:5557
+#: printer/printerdrake.pm:5475 printer/printerdrake.pm:5563
#, c-format
msgid "Set this printer as the default"
msgstr ""
-#: printer/printerdrake.pm:5474 printer/printerdrake.pm:5563
-#: printer/printerdrake.pm:5565 printer/printerdrake.pm:5574
+#: printer/printerdrake.pm:5480 printer/printerdrake.pm:5569
+#: printer/printerdrake.pm:5571 printer/printerdrake.pm:5580
#, fuzzy, c-format
msgid "Enable Printer"
msgstr "Abilite Server"
-#: printer/printerdrake.pm:5477 printer/printerdrake.pm:5568
-#: printer/printerdrake.pm:5569 printer/printerdrake.pm:5571
+#: printer/printerdrake.pm:5483 printer/printerdrake.pm:5574
+#: printer/printerdrake.pm:5575 printer/printerdrake.pm:5577
#, fuzzy, c-format
msgid "Disable Printer"
msgstr "Disabilite Server"
-#: printer/printerdrake.pm:5481 printer/printerdrake.pm:5575
+#: printer/printerdrake.pm:5487 printer/printerdrake.pm:5581
#, c-format
msgid "Printer communication error handling"
msgstr ""
-#: printer/printerdrake.pm:5482 printer/printerdrake.pm:5579
+#: printer/printerdrake.pm:5488 printer/printerdrake.pm:5585
#, c-format
msgid "Print test pages"
msgstr ""
-#: printer/printerdrake.pm:5483 printer/printerdrake.pm:5581
+#: printer/printerdrake.pm:5489 printer/printerdrake.pm:5587
#, c-format
msgid "Learn how to use this printer"
msgstr ""
-#: printer/printerdrake.pm:5484 printer/printerdrake.pm:5583
+#: printer/printerdrake.pm:5490 printer/printerdrake.pm:5589
#, c-format
msgid "Remove printer"
msgstr ""
-#: printer/printerdrake.pm:5535
+#: printer/printerdrake.pm:5541
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr ""
-#: printer/printerdrake.pm:5566
+#: printer/printerdrake.pm:5572
#, c-format
msgid "Printer \"%s\" is now enabled."
msgstr ""
-#: printer/printerdrake.pm:5572
+#: printer/printerdrake.pm:5578
#, c-format
msgid "Printer \"%s\" is now disabled."
msgstr ""
-#: printer/printerdrake.pm:5614
+#: printer/printerdrake.pm:5620
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: printer/printerdrake.pm:5618
+#: printer/printerdrake.pm:5624
#, c-format
msgid "Removing printer \"%s\"..."
msgstr ""
-#: printer/printerdrake.pm:5642
+#: printer/printerdrake.pm:5648
#, c-format
msgid "Default printer"
msgstr ""
-#: printer/printerdrake.pm:5643
+#: printer/printerdrake.pm:5649
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
@@ -14194,7 +14213,7 @@ msgid ""
"about this service, sorry."
msgstr ""
-#: services.pm:224 ugtk2.pm:1028
+#: services.pm:224 ugtk2.pm:1029
#, c-format
msgid "Info"
msgstr ""
@@ -14209,887 +14228,144 @@ msgstr ""
msgid "On boot"
msgstr ""
-#: services.pm:244 standalone/drakroam:185
+#: services.pm:244
#, c-format
msgid "Start"
msgstr "Invie"
-#: services.pm:244 standalone/drakroam:186
+#: services.pm:244
#, c-format
msgid "Stop"
msgstr "Ferme"
-#: share/advertising/01.pl:13
-#, c-format
-msgid "<b>What is Mandriva Linux?</b>"
-msgstr ""
-
-#: share/advertising/01.pl:15
-#, c-format
-msgid "Welcome to <b>Mandriva Linux</b>!"
-msgstr "Benvignût in <b>Mandriva Linux</b>!"
-
-#: share/advertising/01.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/01.pl:19
-#, c-format
-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 ""
-
-#: share/advertising/02.pl:13
-#, fuzzy, c-format
-msgid "<b>Open Source</b>"
-msgstr "<b>Server</b>"
-
-#: share/advertising/02.pl:15
-#, c-format
-msgid "Welcome to the <b>world of open source</b>!"
-msgstr ""
-
-#: share/advertising/02.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/02.pl:19
-#, c-format
-msgid ""
-"We would like to <b>thank</b> everyone who participated in the development "
-"of this latest release."
-msgstr ""
-
-#: share/advertising/03.pl:13
-#, c-format
-msgid "<b>The GPL</b>"
-msgstr ""
-
-#: share/advertising/03.pl:15
-#, c-format
-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 ""
-
-#: share/advertising/03.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/03.pl:19
-#, c-format
-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 ""
-
-#: share/advertising/04.pl:13
-#, c-format
-msgid "<b>Join the Community</b>"
-msgstr ""
-
-#: share/advertising/04.pl:15
-#, c-format
-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 ""
-
-#: share/advertising/04.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/05.pl:15
-#, c-format
-msgid "<b>Download Version</b>"
-msgstr ""
-
-#: share/advertising/05.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/05.pl:19
-#, c-format
-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 ""
-
-#: share/advertising/05.pl:20
-#, c-format
-msgid ""
-"\t* <b>Proprietary drivers</b> (such as drivers for NVIDIA®, ATI™, etc.)."
-msgstr ""
-
-#: share/advertising/05.pl:21
-#, c-format
-msgid ""
-"\t* <b>Proprietary software</b> (such as Acrobat® Reader®, RealPlayer®, "
-"Flash™, etc.)."
-msgstr ""
-
-#: share/advertising/05.pl:23
-#, c-format
-msgid ""
-"You will not have access to the <b>services included</b> in the other "
-"Mandriva products either."
-msgstr ""
-
-#: share/advertising/06.pl:13
-#, c-format
-msgid "<b>Discovery, Your First Linux Desktop</b>"
-msgstr ""
-
-#: share/advertising/06.pl:15
-#, c-format
-msgid "You are now installing <b>Mandriva Linux Discovery</b>."
-msgstr ""
-
-#: share/advertising/06.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/07.pl:13
-#, c-format
-msgid "<b>PowerPack, The Ultimate Linux Desktop</b>"
-msgstr ""
-
-#: share/advertising/07.pl:15
-#, c-format
-msgid "You are now installing <b>Mandriva Linux PowerPack</b>."
-msgstr ""
-
-#: share/advertising/07.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/08.pl:13
-#, c-format
-msgid "<b>PowerPack+, The Linux Solution for Desktops and Servers</b>"
-msgstr ""
-
-#: share/advertising/08.pl:15
-#, c-format
-msgid "You are now installing <b>Mandriva Linux PowerPack+</b>."
-msgstr ""
-
-#: share/advertising/08.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/09.pl:13
-#, fuzzy, c-format
-msgid "<b>Mandriva Products</b>"
-msgstr "<b>Mandriva Expert</b>"
-
-#: share/advertising/09.pl:15
-#, c-format
-msgid ""
-"<b>Mandriva</b> has developed a wide range of <b>Mandriva Linux</b> products."
-msgstr ""
-
-#: share/advertising/09.pl:17
-#, fuzzy, c-format
-msgid "The Mandriva Linux products are:"
-msgstr "Applet Atualizazions Mandriva Linux"
-
-#: share/advertising/09.pl:18
-#, c-format
-msgid "\t* <b>Discovery</b>, Your First Linux Desktop."
-msgstr ""
-
-#: share/advertising/09.pl:19
-#, c-format
-msgid "\t* <b>PowerPack</b>, The Ultimate Linux Desktop."
-msgstr ""
-
-#: share/advertising/09.pl:20
-#, c-format
-msgid "\t* <b>PowerPack+</b>, The Linux Solution for Desktops and Servers."
-msgstr ""
-
-#: share/advertising/09.pl:21
-#, c-format
-msgid ""
-"\t* <b>Mandriva Linux for x86-64</b>, The Mandriva Linux solution for making "
-"the most of your 64-bit processor."
-msgstr ""
-
-#: share/advertising/10.pl:15
-#, c-format
-msgid "<b>Mandriva Products (Nomad Products)</b>"
-msgstr ""
-
-#: share/advertising/10.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/10.pl:18
-#, c-format
-msgid ""
-"\t* <b>Move</b>, a Mandriva Linux distribution that runs entirely from a "
-"bootable CD-ROM."
-msgstr ""
-
-#: share/advertising/10.pl:19
-#, c-format
-msgid ""
-"\t* <b>GlobeTrotter</b>, a Mandriva Linux distribution pre-installed on the "
-"ultra-compact “LaCie Mobile Hard Drive”."
-msgstr ""
-
-#: share/advertising/11.pl:13
-#, c-format
-msgid "<b>Mandriva Products (Professional Solutions)</b>"
-msgstr ""
-
-#: share/advertising/11.pl:15
-#, c-format
-msgid ""
-"Below are the Mandriva products designed to meet the <b>professional needs</"
-"b>:"
-msgstr ""
-
-#: share/advertising/11.pl:16
-#, c-format
-msgid ""
-"\t* <b>Corporate Desktop</b>, The Mandriva Linux Desktop for Businesses."
-msgstr ""
-
-#: share/advertising/11.pl:17
-#, c-format
-msgid "\t* <b>Corporate Server</b>, The Mandriva Linux Server Solution."
-msgstr ""
-
-#: share/advertising/11.pl:18
-#, c-format
-msgid ""
-"\t* <b>Multi-Network Firewall</b>, The Mandriva Linux Security Solution."
-msgstr ""
-
-#: share/advertising/12.pl:13
-#, c-format
-msgid "<b>The KDE Choice</b>"
-msgstr ""
-
-#: share/advertising/12.pl:15
-#, c-format
-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 ""
-
-#: share/advertising/12.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/12.pl:19
-#, c-format
-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 ""
-
-#: share/advertising/13-a.pl:13 share/advertising/13-b.pl:13
-#, fuzzy, c-format
-msgid "<b>Choose your Favorite Desktop Environment</b>"
-msgstr "<b>Ambients di svilup</b>"
-
-#: share/advertising/13-a.pl:15
-#, c-format
-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 ""
-
-#: share/advertising/13-a.pl:17 share/advertising/13-b.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/13-a.pl:19 share/advertising/13-b.pl:19
-#, c-format
-msgid ""
-"But we advise you to try all available ones (including <b>GNOME</b>, "
-"<b>IceWM</b>, etc.) and pick your favorite."
-msgstr ""
-
-#: share/advertising/13-b.pl:15
-#, c-format
-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 ""
-
-#: share/advertising/14.pl:15
-#, c-format
-msgid "<b>OpenOffice.org</b>"
-msgstr ""
-
-#: share/advertising/14.pl:17
-#, c-format
-msgid "With Discovery, you will discover <b>OpenOffice.org</b>."
-msgstr ""
-
-#: share/advertising/14.pl:19
-#, c-format
-msgid ""
-"It is a <b>full-featured office suite</b> that includes word processor, "
-"spreadsheet, presentation and drawing applications."
-msgstr ""
-
-#: share/advertising/14.pl:21
-#, c-format
-msgid ""
-"OpenOffice.org can read and write most types of <b>Microsoft® Office</b> "
-"documents such as Word, Excel and PowerPoint® files."
-msgstr ""
-
-#: share/advertising/15.pl:13
-#, fuzzy, c-format
-msgid "<b>Kontact</b>"
-msgstr "<b>Mandriva Club</b>"
-
-#: share/advertising/15.pl:15
-#, c-format
-msgid ""
-"Discovery includes <b>Kontact</b>, the new KDE <b>groupware solution</b>."
-msgstr ""
-
-#: share/advertising/15.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/15.pl:19
-#, c-format
-msgid ""
-"It is the easiest way to communicate with your contacts and to organize your "
-"time."
-msgstr ""
-
-#: share/advertising/16.pl:13
-#, c-format
-msgid "<b>Surf the Internet</b>"
-msgstr "<b>Navighe su Internet</b>"
-
-#: share/advertising/16.pl:15
-#, c-format
-msgid "Discovery will give you access to <b>every Internet resource</b>:"
-msgstr ""
-
-#: share/advertising/16.pl:16
-#, c-format
-msgid "\t* Browse the <b>Web</b> with Konqueror."
-msgstr ""
-
-#: share/advertising/16.pl:17
-#, c-format
-msgid "\t* <b>Chat</b> online with your friends using Kopete."
-msgstr ""
-
-#: share/advertising/16.pl:18
-#, fuzzy, c-format
-msgid "\t* <b>Transfer</b> files with KBear."
-msgstr "Stramude file doprant FTP"
-
-#: share/advertising/16.pl:19 share/advertising/17.pl:19
-#: share/advertising/18.pl:22
-#, c-format
-msgid "\t* ..."
-msgstr ""
-
-#: share/advertising/17.pl:13
-#, c-format
-msgid "<b>Enjoy our Multimedia Features</b>"
-msgstr ""
-
-#: share/advertising/17.pl:15
-#, c-format
-msgid "Discovery will also make <b>multimedia</b> very easy for you:"
-msgstr ""
-
-#: share/advertising/17.pl:16
-#, c-format
-msgid "\t* Watch your favorite <b>videos</b> with Kaffeine."
-msgstr ""
-
-#: share/advertising/17.pl:17
-#, c-format
-msgid "\t* Listen to your <b>music files</b> with amaroK."
-msgstr ""
-
-#: share/advertising/17.pl:18
-#, c-format
-msgid "\t* Edit and create <b>images</b> with the GIMP."
-msgstr ""
-
-#: share/advertising/18.pl:13
-#, c-format
-msgid "<b>Enjoy the Wide Range of Applications</b>"
-msgstr ""
-
-#: share/advertising/18.pl:15
-#, c-format
-msgid ""
-"In the Mandriva Linux menu you will find <b>easy-to-use</b> applications for "
-"<b>all of your tasks</b>:"
-msgstr ""
-
-#: share/advertising/18.pl:16
-#, c-format
-msgid "\t* Create, edit and share office documents with <b>OpenOffice.org</b>."
-msgstr ""
-
-#: share/advertising/18.pl:17
-#, c-format
-msgid ""
-"\t* Manage your personal data with the integrated personal information "
-"suites <b>Kontact</b> and <b>Evolution</b>."
-msgstr ""
-
-#: share/advertising/18.pl:18
-#, c-format
-msgid "\t* Browse the web with <b>Mozilla</b> and <b>Konqueror</b>."
-msgstr ""
-
-#: share/advertising/18.pl:19
-#, c-format
-msgid "\t* Participate in online chat with <b>Kopete</b>."
-msgstr ""
-
-#: share/advertising/18.pl:20
-#, c-format
-msgid ""
-"\t* Listen to your <b>audio CDs</b> and <b>music files</b>, watch your "
-"<b>videos</b>."
-msgstr ""
-
-#: share/advertising/18.pl:21
-#, c-format
-msgid "\t* Edit and create images with the <b>GIMP</b>."
-msgstr ""
-
-#: share/advertising/19.pl:13
-#, c-format
-msgid "<b>Development Environments</b>"
-msgstr "<b>Ambients di svilup</b>"
-
-#: share/advertising/19.pl:15 share/advertising/22.pl:17
-#, c-format
-msgid ""
-"PowerPack gives you the best tools to <b>develop</b> your own applications."
-msgstr ""
-
-#: share/advertising/19.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/19.pl:19
-#, c-format
-msgid ""
-"PowerPack also ships with <b>GCC</b>, the leading Linux compiler and <b>GDB</"
-"b>, the associated debugger."
-msgstr ""
-
-#: share/advertising/20.pl:13
-#, fuzzy, c-format
-msgid "<b>Development Editors</b>"
-msgstr "<b>Ambients di svilup</b>"
-
-#: share/advertising/20.pl:15
+#: share/advertising/01.pl:3
#, c-format
-msgid "PowerPack will let you choose between those <b>popular editors</b>:"
+msgid "Mandriva Linux 2006: Packs"
msgstr ""
-#: share/advertising/20.pl:16
+#: share/advertising/02.pl:3
#, c-format
-msgid "\t* <b>Emacs</b>: a customizable and real time display editor."
+msgid "Mandriva Linux 2006: More features"
msgstr ""
-#: share/advertising/20.pl:17
+#: share/advertising/03.pl:3
#, c-format
-msgid ""
-"\t* <b>XEmacs</b>: another open source text editor and application "
-"development system."
+msgid "Interactive firewall"
msgstr ""
-#: share/advertising/20.pl:18
+#: share/advertising/04.pl:3
#, c-format
-msgid ""
-"\t* <b>Vim</b>: an advanced text editor with more features than standard Vi."
+msgid "Desktop search"
msgstr ""
-#: share/advertising/21.pl:15
-#, fuzzy, c-format
-msgid "<b>Development Languages</b>"
-msgstr "<b>Ambients di svilup</b>"
-
-#: share/advertising/21.pl:17
+#: share/advertising/05.pl:3
#, c-format
-msgid ""
-"With all these <b>powerful tools</b>, you will be able to write applications "
-"in <b>dozens of programming languages</b>:"
+msgid "New package manager"
msgstr ""
-#: share/advertising/21.pl:18
+#: share/advertising/06.pl:3
#, c-format
-msgid "\t* The famous <b>C language</b>."
+msgid "Mandriva Linux 2006: More performances"
msgstr ""
-#: share/advertising/21.pl:19
+#: share/advertising/07.pl:3
#, c-format
-msgid "\t* Object oriented languages:"
-msgstr ""
-
-#: share/advertising/21.pl:20
-#, c-format
-msgid "\t\t* <b>C++</b>"
-msgstr "\t\t* <b>C++</b>"
-
-#: share/advertising/21.pl:21
-#, c-format
-msgid "\t\t* <b>Java™</b>"
-msgstr "\t\t* <b>Java™</b>"
-
-#: share/advertising/21.pl:22
-#, c-format
-msgid "\t* Scripting languages:"
-msgstr ""
-
-#: share/advertising/21.pl:23
-#, c-format
-msgid "\t\t* <b>Perl</b>"
-msgstr "\t\t* <b>Perl</b>"
-
-#: share/advertising/21.pl:24
-#, c-format
-msgid "\t\t* <b>Python</b>"
-msgstr "\t\t* <b>Python</b>"
-
-#: share/advertising/21.pl:25 share/advertising/28.pl:24
-#, c-format
-msgid "\t* And many more."
-msgstr ""
-
-#: share/advertising/22.pl:15
-#, fuzzy, c-format
-msgid "<b>Development Tools</b>"
-msgstr "<b>Ambients di svilup</b>"
-
-#: share/advertising/22.pl:19
-#, c-format
-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 ""
-
-#: share/advertising/23.pl:13
-#, fuzzy, c-format
-msgid "<b>Groupware Server</b>"
-msgstr "<b>Server</b>"
-
-#: share/advertising/23.pl:15
-#, c-format
-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 ""
-
-#: share/advertising/23.pl:16
-#, c-format
-msgid "\t* Send and receive your <b>e-mails</b>."
-msgstr ""
-
-#: share/advertising/23.pl:17
-#, c-format
-msgid "\t* Share your <b>agendas</b> and your <b>address books</b>."
-msgstr ""
-
-#: share/advertising/23.pl:18
-#, c-format
-msgid "\t* Manage your <b>memos</b> and <b>task lists</b>."
-msgstr ""
-
-#: share/advertising/24.pl:15
-#, c-format
-msgid "<b>Servers</b>"
-msgstr "<b>Server</b>"
-
-#: share/advertising/24.pl:17
-#, c-format
-msgid ""
-"Empower your business network with <b>premier server solutions</b> including:"
-msgstr ""
-
-#: share/advertising/24.pl:18
-#, c-format
-msgid ""
-"\t* <b>Samba</b>: File and print services for Microsoft® Windows® clients."
-msgstr ""
-
-#: share/advertising/24.pl:19
-#, c-format
-msgid "\t* <b>Apache</b>: The most widely used web server."
-msgstr ""
-
-#: share/advertising/24.pl:20
-#, c-format
-msgid ""
-"\t* <b>MySQL</b> and <b>PostgreSQL</b>: The world's most popular open source "
-"databases."
-msgstr ""
-
-#: share/advertising/24.pl:21
-#, c-format
-msgid ""
-"\t* <b>CVS</b>: Concurrent Versions System, the dominant open source network-"
-"transparent version control system."
-msgstr ""
-
-#: share/advertising/24.pl:22
-#, c-format
-msgid ""
-"\t* <b>ProFTPD</b>: The highly configurable GPL-licensed FTP server software."
-msgstr ""
-
-#: share/advertising/24.pl:23
-#, c-format
-msgid ""
-"\t* <b>Postfix</b> and <b>Sendmail</b>: The popular and powerful mail "
-"servers."
-msgstr ""
-
-#: share/advertising/25.pl:13
-#, c-format
-msgid "<b>Mandriva Linux Control Center</b>"
-msgstr ""
-
-#: share/advertising/25.pl:15
-#, c-format
-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 ""
-
-#: share/advertising/25.pl:17
-#, c-format
-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 ""
-
-#: share/advertising/26.pl:13
-#, c-format
-msgid "<b>The Open Source Model</b>"
-msgstr ""
-
-#: share/advertising/26.pl:15
-#, c-format
-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!"
+msgid "Latest kernel and GCC"
msgstr ""
-#: share/advertising/27.pl:13
-#, fuzzy, c-format
-msgid "<b>Online Store</b>"
-msgstr "<b>Server</b>"
-
-#: share/advertising/27.pl:15
+#: share/advertising/08.pl:3
#, c-format
-msgid ""
-"To learn more about Mandriva products and services, you can visit our <b>e-"
-"commerce platform</b>."
+msgid "High Availibility"
msgstr ""
-#: share/advertising/27.pl:17
+#: share/advertising/09.pl:3
#, c-format
-msgid "There you can find all our products, services and third-party products."
+msgid "Delta RPM"
msgstr ""
-#: share/advertising/27.pl:19
+#: share/advertising/10.pl:3
#, c-format
-msgid ""
-"This platform has just been <b>redesigned</b> to improve its efficiency and "
-"usability."
+msgid "Low resources setup"
msgstr ""
-#: share/advertising/27.pl:21
+#: share/advertising/11.pl:3
#, c-format
-msgid "Stop by today at <b>store.mandriva.com</b>!"
+msgid "Boot time reduction"
msgstr ""
-#: share/advertising/28.pl:15
+#: share/advertising/12.pl:3
#, c-format
-msgid "<b>Mandriva Club</b>"
-msgstr "<b>Mandriva Club</b>"
-
-#: share/advertising/28.pl:17
-#, c-format
-msgid ""
-"<b>Mandriva Club</b> is the <b>perfect companion</b> to your Mandriva Linux "
-"product.."
+msgid "Mandriva Linux 2006: Easier to use"
msgstr ""
-#: share/advertising/28.pl:19
+#: share/advertising/13.pl:3
#, c-format
-msgid ""
-"Take advantage of <b>valuable benefits</b> by joining Mandriva Club, such as:"
+msgid "Latest graphical interfaces: KDE and GNOME"
msgstr ""
-#: share/advertising/28.pl:20
+#: share/advertising/14.pl:3
#, c-format
-msgid ""
-"\t* <b>Special discounts</b> on products and services of our online store "
-"<b>store.mandriva.com</b>."
+msgid "auto-installation servers"
msgstr ""
-#: share/advertising/28.pl:21
+#: share/advertising/15.pl:3
#, c-format
-msgid ""
-"\t* Access to <b>commercial applications</b> (for example to NVIDIA® or ATI™ "
-"drivers)."
+msgid "Easy and quick installation"
msgstr ""
-#: share/advertising/28.pl:22
+#: share/advertising/16.pl:3
#, c-format
-msgid "\t* Participation in Mandriva Linux <b>user forums</b>."
+msgid "Easy configuration thanks to 60 wizards"
msgstr ""
-#: share/advertising/28.pl:23
+#: share/advertising/17.pl:3
#, c-format
-msgid ""
-"\t* <b>Early and privileged access</b>, before public release, to Mandriva "
-"Linux <b>ISO images</b>."
+msgid "Look and feel improved"
msgstr ""
-#: share/advertising/29.pl:13
-#, fuzzy, c-format
-msgid "<b>Mandriva Online</b>"
-msgstr "<b>Mandriva Club</b>"
-
-#: share/advertising/29.pl:15
+#: share/advertising/18.pl:3
#, c-format
-msgid ""
-"<b>Mandriva Online</b> is a new premium service that Mandriva is proud to "
-"offer its customers!"
+msgid "New webmin theme"
msgstr ""
-#: share/advertising/29.pl:17
+#: share/advertising/19.pl:3
#, c-format
-msgid ""
-"Mandriva Online provides a wide range of valuable services for <b>easily "
-"updating</b> your Mandriva Linux systems:"
+msgid "Mandriva Linux 2006: More support"
msgstr ""
-#: share/advertising/29.pl:18
+#: share/advertising/20.pl:3
#, c-format
-msgid "\t* <b>Perfect</b> system security (automated software updates)."
+msgid "Better Hardware support"
msgstr ""
-#: share/advertising/29.pl:19
+#: share/advertising/21.pl:3
#, c-format
-msgid ""
-"\t* <b>Notification</b> of updates (by e-mail or by an applet on the "
-"desktop)."
+msgid "Xen support"
msgstr ""
-#: share/advertising/29.pl:20
+#: share/advertising/22.pl:3
#, c-format
-msgid "\t* Flexible <b>scheduled</b> updates."
+msgid "Mandriva Linux 2006: More information"
msgstr ""
-#: share/advertising/29.pl:21
+#: share/advertising/23.pl:3
#, c-format
-msgid ""
-"\t* Management of <b>all your Mandriva Linux systems</b> with one account."
+msgid "Mandriva Linux 2006: Where to buy?"
msgstr ""
-#: share/advertising/30.pl:13
+#: share/advertising/24.pl:3
#, c-format
-msgid "<b>Mandriva Expert</b>"
-msgstr "<b>Mandriva Expert</b>"
-
-#: share/advertising/30.pl:15
-#, c-format
-msgid ""
-"Do you require <b>assistance?</b> Meet Mandriva's technical experts on "
-"<b>our technical support platform</b> www.mandrivaexpert.com."
+msgid "Where to find technical assistance?"
msgstr ""
-#: share/advertising/30.pl:17
+#: share/advertising/25.pl:3
#, c-format
-msgid ""
-"Thanks to the help of <b>qualified Mandriva Linux experts</b>, you will save "
-"a lot of time."
+msgid "How to join the Mandriva Linux community?"
msgstr ""
-#: share/advertising/30.pl:19
+#: share/advertising/26.pl:3
#, c-format
-msgid ""
-"For any question related to Mandriva Linux, you have the possibility to "
-"purchase support incidents at <b>store.mandriva.com</b>."
+msgid "How to maintain your system up-to-date?"
msgstr ""
#: share/compssUsers.pl:26
@@ -16303,8 +15579,8 @@ msgstr ""
#: standalone/drakautoinst:38 standalone/drakhosts:123
#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:433 standalone/draknfs:435 standalone/draknfs:525
-#: standalone/draknfs:532 standalone/draksambashare:181
+#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
+#: standalone/draknfs:546 standalone/draksambashare:181
#: standalone/draksambashare:202 standalone/draksambashare:625
#: standalone/draksambashare:792
#, c-format
@@ -17910,7 +17186,12 @@ msgstr ""
msgid "Drakbackup"
msgstr ""
-#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/drakboot:49
+#, c-format
+msgid "No bootloader found, creating a new configuration"
+msgstr ""
+
+#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:148 standalone/printerdrake:149
#: standalone/printerdrake:150
@@ -17918,107 +17199,107 @@ msgstr ""
msgid "/_File"
msgstr "/_File"
-#: standalone/drakboot:77 standalone/logdrake:75
+#: standalone/drakboot:85 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/File/_Jessî"
-#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/drakboot:85 standalone/harddrake2:192 standalone/logdrake:75
#: standalone/printerdrake:150
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
-#: standalone/drakboot:117
+#: standalone/drakboot:125
#, c-format
msgid "Text only"
msgstr ""
-#: standalone/drakboot:118
+#: standalone/drakboot:126
#, c-format
msgid "Verbose"
msgstr ""
-#: standalone/drakboot:119
+#: standalone/drakboot:127
#, c-format
msgid "Silent"
msgstr ""
-#: standalone/drakboot:126
+#: 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:127
+#: standalone/drakboot:135
#, fuzzy, c-format
msgid "Do you want to configure it now?"
msgstr "Vuelistu provâ le configurazion?"
-#: standalone/drakboot:136
+#: standalone/drakboot:144
#, c-format
msgid "Install themes"
msgstr ""
-#: standalone/drakboot:138
+#: standalone/drakboot:146
#, c-format
msgid "Graphical boot theme selection"
msgstr ""
-#: standalone/drakboot:141
+#: standalone/drakboot:149
#, fuzzy, c-format
msgid "Graphical boot mode:"
msgstr "Ambient Grafic"
-#: standalone/drakboot:143
+#: standalone/drakboot:151
#, c-format
msgid "Theme"
msgstr ""
-#: standalone/drakboot:146
+#: standalone/drakboot:154
#, c-format
msgid ""
"Display theme\n"
"under console"
msgstr ""
-#: standalone/drakboot:151
+#: standalone/drakboot:159
#, c-format
msgid "Create new theme"
msgstr ""
-#: standalone/drakboot:183
+#: standalone/drakboot:191
#, c-format
msgid "Default user"
msgstr "Utent predefinît"
-#: standalone/drakboot:184
+#: standalone/drakboot:192
#, c-format
msgid "Default desktop"
msgstr ""
-#: standalone/drakboot:187
+#: standalone/drakboot:195
#, c-format
msgid "No, I do not want autologin"
msgstr ""
-#: standalone/drakboot:188
+#: standalone/drakboot:196
#, c-format
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: standalone/drakboot:195
+#: standalone/drakboot:203
#, c-format
msgid "System mode"
msgstr ""
-#: standalone/drakboot:198
+#: standalone/drakboot:206
#, c-format
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: standalone/drakboot:264
+#: standalone/drakboot:272
#, c-format
msgid ""
"Please choose a video mode, it will be applied to each of the boot entries "
@@ -18225,7 +17506,6 @@ msgid "Network configuration (%d adapters)"
msgstr ""
#: standalone/drakconnect:89 standalone/drakconnect:807
-#: standalone/drakroam:163
#, c-format
msgid "Gateway:"
msgstr ""
@@ -18235,7 +17515,7 @@ msgstr ""
msgid "Interface:"
msgstr "Interface:"
-#: standalone/drakconnect:93 standalone/net_monitor:117
+#: standalone/drakconnect:93 standalone/net_monitor:116
#, c-format
msgid "Wait please"
msgstr ""
@@ -18307,7 +17587,7 @@ msgstr ""
msgid "static"
msgstr ""
-#: standalone/drakconnect:351 standalone/drakroam:144
+#: standalone/drakconnect:351
#, c-format
msgid "DHCP"
msgstr ""
@@ -18434,12 +17714,12 @@ msgstr ""
msgid "down"
msgstr ""
-#: standalone/drakconnect:798 standalone/net_monitor:466
+#: standalone/drakconnect:798 standalone/net_monitor:465
#, c-format
msgid "Connected"
msgstr ""
-#: standalone/drakconnect:798 standalone/net_monitor:466
+#: standalone/drakconnect:798 standalone/net_monitor:465
#, c-format
msgid "Not connected"
msgstr ""
@@ -18506,7 +17786,7 @@ msgid ""
msgstr ""
#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:42 standalone/net_applet:52
+#: standalone/drakconnect:976 standalone/drakroam:30 standalone/net_applet:52
#, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr ""
@@ -18531,7 +17811,7 @@ msgstr ""
msgid "Internet access"
msgstr "Acès a Internet"
-#: standalone/drakconnect:1019 standalone/net_monitor:96
+#: standalone/drakconnect:1019 standalone/net_monitor:95
#, c-format
msgid "Connection type: "
msgstr ""
@@ -19225,14 +18505,6 @@ msgstr ""
msgid "Allowed addresses"
msgstr "Permet ducj i utents"
-#: standalone/drakids:33 standalone/drakids:134 standalone/drakids:160
-#: standalone/drakids:169 standalone/drakids:179 standalone/drakids:246
-#: standalone/net_applet:59 standalone/net_applet:181
-#: standalone/net_applet:353 standalone/net_applet:390
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Firewall"
-
#: standalone/drakids:57
#, c-format
msgid "Log"
@@ -19269,8 +18541,8 @@ msgid "Remove from whitelist"
msgstr "Rimôf di LVM"
#: standalone/drakids:134 standalone/drakids:160 standalone/drakids:169
-#: standalone/drakids:179 standalone/drakids:246 standalone/net_applet:181
-#: standalone/net_applet:353
+#: standalone/drakids:179 standalone/drakids:246 standalone/drakroam:140
+#: standalone/net_applet:180 standalone/net_applet:354
#, c-format
msgid "Unable to contact daemon"
msgstr ""
@@ -19443,124 +18715,124 @@ msgid ""
"these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""
-#: standalone/draknfs:304
+#: standalone/draknfs:306
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr ""
-#: standalone/draknfs:371
+#: standalone/draknfs:378
#, c-format
msgid "Advanced Options Help"
msgstr ""
-#: standalone/draknfs:382
+#: standalone/draknfs:389
#, c-format
msgid "NFS directory"
msgstr ""
-#: standalone/draknfs:384 standalone/draksambashare:588
+#: standalone/draknfs:391 standalone/draksambashare:588
#: standalone/draksambashare:767
#, c-format
msgid "Directory:"
msgstr ""
-#: standalone/draknfs:387
+#: standalone/draknfs:394
#, c-format
msgid "Host access"
msgstr ""
-#: standalone/draknfs:389
+#: standalone/draknfs:396
#, c-format
msgid "Access:"
msgstr ""
-#: standalone/draknfs:389
+#: standalone/draknfs:396
#, c-format
msgid "Hosts Access"
msgstr ""
-#: standalone/draknfs:392
+#: standalone/draknfs:399
#, c-format
msgid "User ID Mapping"
msgstr ""
-#: standalone/draknfs:394
+#: standalone/draknfs:401
#, c-format
msgid "User ID:"
msgstr ""
-#: standalone/draknfs:394
+#: standalone/draknfs:401
#, c-format
msgid "Help User ID"
msgstr ""
-#: standalone/draknfs:395
+#: standalone/draknfs:402
#, c-format
msgid "Anonymous user ID:"
msgstr ""
-#: standalone/draknfs:396
+#: standalone/draknfs:403
#, c-format
msgid "Anonymous Group ID:"
msgstr ""
-#: standalone/draknfs:433
+#: standalone/draknfs:444
#, c-format
msgid "Can't create this directory."
msgstr ""
-#: standalone/draknfs:435
+#: standalone/draknfs:447
#, c-format
msgid "You must specify hosts access."
msgstr ""
-#: standalone/draknfs:513
+#: standalone/draknfs:527
#, c-format
msgid "Share Directory"
msgstr ""
-#: standalone/draknfs:513
+#: standalone/draknfs:527
#, c-format
msgid "Hosts Wildcard"
msgstr ""
-#: standalone/draknfs:513
+#: standalone/draknfs:527
#, c-format
msgid "General Options"
msgstr ""
-#: standalone/draknfs:513
+#: standalone/draknfs:527
#, c-format
msgid "Custom Options"
msgstr ""
-#: standalone/draknfs:525 standalone/draksambashare:625
+#: standalone/draknfs:539 standalone/draksambashare:625
#: standalone/draksambashare:792
#, c-format
msgid "Please enter a directory to share."
msgstr ""
-#: standalone/draknfs:532
+#: standalone/draknfs:546
#, c-format
msgid "Please use the modify button to set right access."
msgstr ""
-#: standalone/draknfs:584
+#: standalone/draknfs:600
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr ""
-#: standalone/draknfs:593
+#: standalone/draknfs:609
#, c-format
msgid "Failed to add NFS share."
msgstr ""
-#: standalone/draknfs:600
+#: standalone/draknfs:616
#, c-format
msgid "Failed to Modify NFS share."
msgstr ""
-#: standalone/draknfs:607
+#: standalone/draknfs:623
#, c-format
msgid "Failed to remove an NFS share."
msgstr ""
@@ -19788,126 +19060,44 @@ msgstr "Selezion dal percors"
msgid "Property"
msgstr ""
-#: standalone/drakroam:41
+#: standalone/drakroam:29
#, c-format
msgid ""
"You do not have any wireless interface.\n"
"Run the \"%s\" assistant from the Mandriva Linux Control Center"
msgstr ""
-#: standalone/drakroam:141
+#: standalone/drakroam:44
#, c-format
-msgid "ESSID"
+msgid "SSID"
msgstr ""
-#: standalone/drakroam:142 standalone/drakvpn:1129
+#: standalone/drakroam:47
#, c-format
-msgid "Mode"
+msgid "Signal strength"
msgstr ""
-#: standalone/drakroam:143 standalone/harddrake2:97
+#: standalone/drakroam:104
#, c-format
-msgid "Channel"
-msgstr ""
-
-#: standalone/drakroam:145
-#, c-format
-msgid "Key"
-msgstr ""
-
-#: standalone/drakroam:161
-#, c-format
-msgid "Network:"
+msgid "Please enter settings for wireless network \"%s\""
msgstr ""
-#: standalone/drakroam:162
-#, c-format
-msgid "IP:"
-msgstr ""
-
-#: standalone/drakroam:164
-#, c-format
-msgid "Mode:"
-msgstr ""
-
-#: standalone/drakroam:165
+#: standalone/drakroam:115
#, c-format
-msgid "Encryption:"
+msgid "DNS server"
msgstr ""
#: standalone/drakroam:166
#, c-format
-msgid "Signal:"
-msgstr ""
-
-#: standalone/drakroam:180
-#, c-format
-msgid "Roaming"
-msgstr ""
-
-#: standalone/drakroam:183 standalone/drakroam:266
-#, c-format
-msgid "Roaming: %s"
-msgstr ""
-
-#: standalone/drakroam:183 standalone/drakroam:265 standalone/drakvpn:1047
-#: standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr ""
-
-#: standalone/drakroam:190
-#, c-format
-msgid "Scan interval (sec): "
-msgstr ""
-
-#: standalone/drakroam:193
-#, c-format
-msgid "Set"
-msgstr ""
-
-#: standalone/drakroam:198
-#, c-format
-msgid "Known Networks (Drag up/down or edit)"
-msgstr ""
-
-#: standalone/drakroam:206
-#, c-format
msgid "Connect"
msgstr "Conetimi"
-#: standalone/drakroam:214
-#, c-format
-msgid "Available Networks"
-msgstr ""
-
-#: standalone/drakroam:229
-#, c-format
-msgid "Rescan"
-msgstr ""
-
-#: standalone/drakroam:233
-#, c-format
-msgid "Status"
-msgstr "Stât"
-
-#: standalone/drakroam:240
-#, c-format
-msgid "Disconnect"
-msgstr ""
-
#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:241 standalone/printerdrake:249
+#: standalone/drakroam:167 standalone/printerdrake:249
#, c-format
msgid "Refresh"
msgstr "Atualize"
-#: standalone/drakroam:265 standalone/drakvpn:1047 standalone/drakvpn:1063
-#: standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr ""
-
#: standalone/draksambashare:62
#, fuzzy, c-format
msgid "Share directory"
@@ -20541,21 +19731,17 @@ msgstr ""
#: standalone/draksplash:30
#, c-format
-msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+msgid "x coordinate of text box"
msgstr ""
#: standalone/draksplash:31
#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+msgid "y coordinate of text box"
msgstr ""
#: standalone/draksplash:32
#, c-format
-msgid "text width"
+msgid "text box width"
msgstr ""
#: standalone/draksplash:33
@@ -20587,69 +19773,129 @@ msgstr ""
msgid "the height of the progress bar"
msgstr ""
-#: standalone/draksplash:54 standalone/draksplash:59
+#: 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:60
+#, c-format
+msgid "Choose progress bar color 1"
+msgstr ""
+
+#: standalone/draksplash:61
+#, c-format
+msgid "Choose progress bar color 2"
+msgstr ""
+
+#: standalone/draksplash:62
+#, c-format
+msgid "Choose progress bar background"
+msgstr ""
+
+#: standalone/draksplash:63
+#, c-format
+msgid "Gradient type"
+msgstr ""
+
+#: standalone/draksplash:64
#, c-format
-msgid "Choose progress bar color"
+msgid "Choose text color"
msgstr ""
-#: standalone/draksplash:55 standalone/draksplash:60
+#: standalone/draksplash:66 standalone/draksplash:73
#, c-format
msgid "Choose picture"
msgstr ""
-#: standalone/draksplash:56
+#: standalone/draksplash:67
#, c-format
msgid "Silent bootsplash"
msgstr ""
-#: standalone/draksplash:61
+#: standalone/draksplash:70
+#, c-format
+msgid "Choose text zone color"
+msgstr ""
+
+#: standalone/draksplash:71
+#, c-format
+msgid "Text color"
+msgstr ""
+
+#: standalone/draksplash:72
+#, c-format
+msgid "Background color"
+msgstr ""
+
+#: standalone/draksplash:74
#, c-format
msgid "Verbose bootsplash"
msgstr ""
-#: standalone/draksplash:63
+#: standalone/draksplash:76
#, c-format
msgid "Display logo on Console"
msgstr ""
-#: standalone/draksplash:66
+#: standalone/draksplash:79
#, c-format
msgid "Console bootsplash"
msgstr ""
-#: standalone/draksplash:72
+#: standalone/draksplash:85
#, c-format
msgid "Theme name"
msgstr ""
-#: standalone/draksplash:75
+#: standalone/draksplash:88
#, c-format
msgid "final resolution"
msgstr ""
-#: standalone/draksplash:80
+#: standalone/draksplash:93
#, c-format
msgid "Save theme"
msgstr ""
-#: standalone/draksplash:141
+#: standalone/draksplash:154
#, c-format
msgid "saving Bootsplash theme..."
msgstr ""
-#: standalone/draksplash:150
+#: standalone/draksplash:163
#, c-format
msgid "Unable to load image file %s"
msgstr ""
-#: standalone/draksplash:161
+#: standalone/draksplash:174
#, c-format
msgid "choose image"
msgstr ""
-#: standalone/draksplash:175
+#: standalone/draksplash:189
#, c-format
-msgid "ProgressBar color selection"
+msgid "Color selection"
msgstr ""
#: standalone/drakups:74
@@ -21745,6 +20991,16 @@ msgstr ""
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 ""
@@ -21940,6 +21196,11 @@ msgstr ""
#: standalone/drakvpn:1129
#, c-format
+msgid "Mode"
+msgstr ""
+
+#: standalone/drakvpn:1129
+#, c-format
msgid "tunnel"
msgstr ""
@@ -22529,6 +21790,11 @@ msgstr ""
#: standalone/harddrake2:97
#, c-format
+msgid "Channel"
+msgstr ""
+
+#: standalone/harddrake2:97
+#, c-format
msgid "EIDE/SCSI channel"
msgstr ""
@@ -22807,8 +22073,8 @@ msgstr ""
msgid "Run config tool"
msgstr ""
-#: standalone/harddrake2:306 standalone/net_monitor:103
-#: standalone/net_monitor:104 standalone/net_monitor:109
+#: standalone/harddrake2:306 standalone/net_monitor:102
+#: standalone/net_monitor:103 standalone/net_monitor:108
#, c-format
msgid "unknown"
msgstr ""
@@ -23004,7 +22270,7 @@ msgstr ""
msgid "A tool to monitor your logs"
msgstr ""
-#: standalone/logdrake:128 standalone/net_applet:315 standalone/net_monitor:94
+#: standalone/logdrake:128 standalone/net_applet:316 standalone/net_monitor:93
#, c-format
msgid "Settings"
msgstr ""
@@ -23202,12 +22468,12 @@ msgstr "Rêt & Internet"
msgid "Network is down on interface %s. Click on \"Configure Network\""
msgstr "Rêt & Internet"
-#: standalone/net_applet:56 standalone/net_monitor:469
+#: standalone/net_applet:56 standalone/net_monitor:468
#, c-format
msgid "Connect %s"
msgstr ""
-#: standalone/net_applet:57 standalone/net_monitor:469
+#: standalone/net_applet:57 standalone/net_monitor:468
#, c-format
msgid "Disconnect %s"
msgstr ""
@@ -23242,17 +22508,17 @@ msgstr ""
msgid "Get Online Help"
msgstr ""
-#: standalone/net_applet:304
+#: standalone/net_applet:305
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr ""
-#: standalone/net_applet:309
+#: standalone/net_applet:310
#, c-format
msgid "Always launch on startup"
msgstr ""
-#: standalone/net_applet:313
+#: standalone/net_applet:314
#, fuzzy, c-format
msgid "Wireless networks"
msgstr "acès ai imprescj di rêt"
@@ -23322,122 +22588,122 @@ msgstr ""
msgid "Always blacklist (do not ask again)"
msgstr ""
-#: standalone/net_monitor:58 standalone/net_monitor:63
+#: standalone/net_monitor:57 standalone/net_monitor:62
#, c-format
msgid "Network Monitoring"
msgstr ""
-#: standalone/net_monitor:99
+#: standalone/net_monitor:98
#, c-format
msgid "Global statistics"
msgstr ""
-#: standalone/net_monitor:102
+#: standalone/net_monitor:101
#, c-format
msgid "Instantaneous"
msgstr ""
-#: standalone/net_monitor:102
+#: standalone/net_monitor:101
#, c-format
msgid "Average"
msgstr ""
-#: standalone/net_monitor:103
+#: standalone/net_monitor:102
#, c-format
msgid ""
"Sending\n"
"speed:"
msgstr ""
-#: standalone/net_monitor:104
+#: standalone/net_monitor:103
#, c-format
msgid ""
"Receiving\n"
"speed:"
msgstr ""
-#: standalone/net_monitor:108
+#: standalone/net_monitor:107
#, c-format
msgid ""
"Connection\n"
"time: "
msgstr ""
-#: standalone/net_monitor:115
+#: standalone/net_monitor:114
#, c-format
msgid "Use same scale for received and transmitted"
msgstr ""
-#: standalone/net_monitor:134
+#: standalone/net_monitor:133
#, c-format
msgid "Wait please, testing your connection..."
msgstr ""
-#: standalone/net_monitor:183 standalone/net_monitor:196
+#: standalone/net_monitor:182 standalone/net_monitor:195
#, c-format
msgid "Disconnecting from Internet "
msgstr ""
-#: standalone/net_monitor:183 standalone/net_monitor:196
+#: standalone/net_monitor:182 standalone/net_monitor:195
#, c-format
msgid "Connecting to Internet "
msgstr ""
-#: standalone/net_monitor:227
+#: standalone/net_monitor:226
#, c-format
msgid "Disconnection from Internet failed."
msgstr ""
-#: standalone/net_monitor:228
+#: standalone/net_monitor:227
#, c-format
msgid "Disconnection from Internet complete."
msgstr ""
-#: standalone/net_monitor:230
+#: standalone/net_monitor:229
#, c-format
msgid "Connection complete."
msgstr ""
-#: standalone/net_monitor:231
+#: standalone/net_monitor:230
#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandriva Linux Control Center."
msgstr ""
-#: standalone/net_monitor:336
+#: standalone/net_monitor:335
#, c-format
msgid "Color configuration"
msgstr ""
-#: standalone/net_monitor:384 standalone/net_monitor:404
+#: standalone/net_monitor:383 standalone/net_monitor:403
#, c-format
msgid "sent: "
msgstr ""
-#: standalone/net_monitor:391 standalone/net_monitor:408
+#: standalone/net_monitor:390 standalone/net_monitor:407
#, c-format
msgid "received: "
msgstr ""
-#: standalone/net_monitor:398
+#: standalone/net_monitor:397
#, c-format
msgid "average"
msgstr ""
-#: standalone/net_monitor:401
+#: standalone/net_monitor:400
#, c-format
msgid "Local measure"
msgstr ""
-#: standalone/net_monitor:462
+#: standalone/net_monitor:461
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: standalone/net_monitor:473
+#: standalone/net_monitor:472
#, c-format
msgid "No internet connection configured"
msgstr ""
@@ -24154,47 +23420,47 @@ msgstr "Instale atualizazions"
msgid "Exit install"
msgstr ""
-#: ugtk2.pm:918
+#: ugtk2.pm:919
#, c-format
msgid "Is this correct?"
msgstr ""
-#: ugtk2.pm:978
+#: ugtk2.pm:979
#, fuzzy, c-format
msgid "No file chosen"
msgstr "Nissune icone"
-#: ugtk2.pm:980
+#: ugtk2.pm:981
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:982
+#: ugtk2.pm:983
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Cartele Home no disponibile."
-#: ugtk2.pm:984
+#: ugtk2.pm:985
#, fuzzy, c-format
msgid "No such directory"
msgstr "Cartele locâl"
-#: ugtk2.pm:984
+#: ugtk2.pm:985
#, fuzzy, c-format
msgid "No such file"
msgstr "File locâi"
-#: ugtk2.pm:1065
+#: ugtk2.pm:1066
#, c-format
msgid "Expand Tree"
msgstr ""
-#: ugtk2.pm:1066
+#: ugtk2.pm:1067
#, c-format
msgid "Collapse Tree"
msgstr ""
-#: ugtk2.pm:1067
+#: ugtk2.pm:1068
#, c-format
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -24213,6 +23479,91 @@ msgstr ""
msgid "Installation failed"
msgstr "Instalazion falade"
+#, fuzzy
+#~ msgid "Default Idmap "
+#~ msgstr "Predefinît"
+
+#~ msgid "Welcome to <b>Mandriva Linux</b>!"
+#~ msgstr "Benvignût in <b>Mandriva Linux</b>!"
+
+#, fuzzy
+#~ msgid "<b>Open Source</b>"
+#~ msgstr "<b>Server</b>"
+
+#, fuzzy
+#~ msgid "<b>Mandriva Products</b>"
+#~ msgstr "<b>Mandriva Expert</b>"
+
+#, fuzzy
+#~ msgid "The Mandriva Linux products are:"
+#~ msgstr "Applet Atualizazions Mandriva Linux"
+
+#, fuzzy
+#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
+#~ msgstr "<b>Ambients di svilup</b>"
+
+#, fuzzy
+#~ msgid "<b>Kontact</b>"
+#~ msgstr "<b>Mandriva Club</b>"
+
+#~ msgid "<b>Surf the Internet</b>"
+#~ msgstr "<b>Navighe su Internet</b>"
+
+#, fuzzy
+#~ msgid "\t* <b>Transfer</b> files with KBear."
+#~ msgstr "Stramude file doprant FTP"
+
+#~ msgid "<b>Development Environments</b>"
+#~ msgstr "<b>Ambients di svilup</b>"
+
+#, fuzzy
+#~ msgid "<b>Development Editors</b>"
+#~ msgstr "<b>Ambients di svilup</b>"
+
+#, fuzzy
+#~ msgid "<b>Development Languages</b>"
+#~ msgstr "<b>Ambients di svilup</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>"
+
+#~ 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>Ambients di svilup</b>"
+
+#, fuzzy
+#~ msgid "<b>Groupware Server</b>"
+#~ msgstr "<b>Server</b>"
+
+#~ msgid "<b>Servers</b>"
+#~ msgstr "<b>Server</b>"
+
+#, fuzzy
+#~ msgid "<b>Online Store</b>"
+#~ msgstr "<b>Server</b>"
+
+#~ msgid "<b>Mandriva Club</b>"
+#~ msgstr "<b>Mandriva Club</b>"
+
+#, fuzzy
+#~ msgid "<b>Mandriva Online</b>"
+#~ msgstr "<b>Mandriva Club</b>"
+
+#~ msgid "<b>Mandriva Expert</b>"
+#~ msgstr "<b>Mandriva Expert</b>"
+
+#~ msgid "Status"
+#~ msgstr "Stât"
+
#~ msgid "Connect to the Internet"
#~ msgstr "Conetiti a Internet"