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

use diagnostics;
use strict;

#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use modules;
use fsedit;
use devices;
use run_program;

#- for partition_table_xxx emulation
sub new {
    my ($class, $name) = @_;
    $name =~ s/\W/_/g;
    $name = substr($name, 0, 63); # max length must be < NAME_LEN / 2  where NAME_LEN is 128
    bless { disks => [], VG_name => $name }, $class;
}
sub hasExtended { 0 }
sub adjustStart {}
sub adjustEnd {}
sub write {}
sub cylinder_size { 
    my ($hd) = @_;
    $hd->{PE_size};
}

init();

sub init() {
    eval { modules::load('lvm-mod') };
    run_program::run('vgscan') if !-e '/etc/lvmtab';
    run_program::run('vgchange', '-a', 'y');
}

sub run {
    if (my $r = run_program::run(@_)) {
	$r;
    } else {
	$? >> 8 == 98 or return;

	#- sometimes, it needs running vgscan again, doing so:
	run_program::run('vgscan');
	run_program::run(@_);
    }
}
sub run_or_die {
    my ($prog, @para) = @_;
    run($prog, @para) or die "$prog failed\n";
}

sub check {
    my ($in) = @_;

    my $f = '/sbin/pvcreate';
    -e $f or $in->do_pkgs->install('lvm');
    -e $f or $in->ask_warn('', "Mandatory package lvm is missing"), return;
    init();
    1;
}

sub get_vg {
    my ($part) = @_;
    my $dev = expand_symlinks(devices::make($part->{device}));
    (split(':', run_program::get_stdout('pvdisplay', '-c', $dev)))[1];
}

sub update_size {
    my ($lvm) = @_;
    my @l = split(':', run_program::get_stdout('vgdisplay', '-c', '-D', $lvm->{VG_name}));
    $lvm->{totalsectors} = ($lvm->{PE_size} = $l[12]) * $l[13];
}

sub get_lv_size {
    my ($lvm_device) = @_;
    my $info = run_program::get_stdout('lvdisplay', '-D', '-c', "/dev/$lvm_device");
    (split(':', $info))[6];
}

sub get_lvs {
    my ($lvm) = @_;
    my @l = run_program::get_stdout('vgdisplay', '-v', '-D', $lvm->{VG_name});
    $lvm->{primary}{normal} = 
      [
       map {
	   my $type = -e "/dev/$_" && fsedit::typeOfPart("/dev/$_");

	   { device => $_, 
	     type => $type || 0x83,
	     size => get_lv_size($_) }
       } map { if_(m|^LV Name\s+/dev/(\S+)|, $1) } @l
      ];
}

sub vg_add {
    my ($part) = @_;
    my $dev = expand_symlinks(devices::make($part->{device}));
    run_or_die('pvcreate', '-y', '-ff', $dev);
    my $prog = run('vgdisplay', $part->{lvm}) ? 'vgextend' : 'vgcreate';
    run_or_die($prog, $part->{lvm}, $dev);
}

sub vg_destroy {
    my ($lvm) = @_;

    is_empty_array_ref($lvm->{primary}{normal}) or die \N("Remove the logical volumes first\n");
    run('vgchange', '-a', 'n', $lvm->{VG_name});
    run_or_die('vgremove', $lvm->{VG_name});
    foreach (@{$lvm->{disks}}) {
	delete $_->{lvm};
	$_->{isFormatted} = 0;
	$_->{notFormatted} = 1;	
    }
}

sub lv_delete {
    my ($lvm, $lv) = @_;

    run_or_die('lvremove', '-f', "/dev/$lv->{device}");

    my $list = $lvm->{primary}{normal};
    @$list = grep { $_ != $lv } @$list;
}

sub lv_create {
    my ($lvm, $lv) = @_;
    my $list = $lvm->{primary}{normal} ||= [];
    my $nb = 1 + max(map { basename($_->{device}) } @$list);
    $lv->{device} = "$lvm->{VG_name}/$nb";
    run_or_die('lvcreate', '--size', int($lv->{size} / 2) . 'k', '-n', $nb, $lvm->{VG_name});
    $lv->{size} = get_lv_size($lv->{device}); #- the created size is smaller than asked size
    $lv->{notFormatted} = 1;
    $lv->{isFormatted} = 0;
    push @$list, $lv;
}

sub lv_resize {
    my ($lv, $oldsize) = @_;
    run_or_die($oldsize > $lv->{size} ? ('lvreduce', '-f') : 'lvextend', 
	       '--size', int($lv->{size} / 2) . 'k', "/dev/$lv->{device}");
    $lv->{size} = get_lv_size($lv->{device}); #- the resized partition may not be the exact asked size
}

1;
skyfkoppe afsonderlik"
msgid "Use Xinerama extension"
msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -140,7 +140,7 @@ msgstr ""
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,13 +150,13 @@ msgstr ""
"bied,\n"
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
#
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Aangepaste"
@@ -177,32 +177,32 @@ msgstr "Resolusie"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opsies"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Verlaat"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -299,25 +299,25 @@ msgstr "Kies die resolusie en kleurdiepte"
msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Kanselleer"
@@ -394,11 +394,11 @@ msgstr "XFree86 bediener: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X met herlaai"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -407,7 +407,7 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -419,7 +419,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Watter tipe is u ISDN-konneksie?"
@@ -492,7 +492,7 @@ msgstr "Kompak"
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Videomodus"
@@ -500,17 +500,17 @@ msgstr "Videomodus"
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Wagwoord (weer)"
@@ -545,14 +545,14 @@ msgid ""
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
@@ -589,7 +589,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -597,156 +597,156 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Verstek"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-grootte"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Geen video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Verwyder inskrywing"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Leл etiket word nie toegelaat nie"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Sien hardeware inligting"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -757,17 +757,17 @@ msgstr ""
"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
"Bv. ``io=0x300 irq-7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Module opsies:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -783,15 +783,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -800,63 +800,63 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -898,60 +898,60 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -960,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoпes"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1007,7 +1007,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1015,7 +1015,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1025,13 +1025,13 @@ msgstr ""
"wat aan die internet as 'n kliлnt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1045,7 +1045,7 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliлnte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1054,36 +1054,36 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opsies"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Gebruik sekuriteitsvlak"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1096,7 +1096,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1119,13 +1119,13 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1134,45 +1134,45 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "Gee hulp beskikbaar nie (nog nie).\n"
@@ -1224,106 +1224,106 @@ msgstr "LILO/GRUB metode"
msgid "Yaboot mode"
msgstr "Yaboot metode"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Installeer stelsel"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Kies 'n nuwe grootte"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fout"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Geen video"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Kies installasieklas"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1332,22 +1332,22 @@ msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigureer"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Stoor pakketseleksie"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1356,44 +1356,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Stelselmode"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nee, ek verlang outo-aanteken"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
@@ -1497,26 +1497,34 @@ msgstr "seriaal"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nuut"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
@@ -1524,27 +1532,27 @@ msgid "Mount point"
msgstr "Hegpunt"
#
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Toets asb. die muis"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
@@ -1633,7 +1641,7 @@ msgstr "Leeg"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ander"
@@ -1781,7 +1789,7 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Waarskuwing"
@@ -2343,7 +2351,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Gebruikerskode"
@@ -2358,23 +2366,23 @@ msgstr "NIS-domein"
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2460,47 +2468,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Konfigurasie"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Drywer"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Wag asb."
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Onbekende model"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2627,7 +2698,8 @@ msgid "/_Quit"
msgstr "Verlaat"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Help"
@@ -2647,76 +2719,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Help/_Aangaande..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Aftas"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Hardeskyfdeteksie."
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Sien hardeware inligting"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Vertoon inligting"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Stel muistoestel op"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Op poort %s bespeur"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Drukkerdata word gelees..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekondes"
@@ -3854,7 +3927,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3869,7 +3942,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3878,20 +3951,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3899,12 +3972,12 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lкer %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4146,7 +4219,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -4179,11 +4252,11 @@ msgstr "Installasieklas"
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
@@ -4263,7 +4336,7 @@ msgstr "Wys outogeselekteerde pakkette."
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installasie"
@@ -4283,7 +4356,7 @@ msgstr "Minimale installasie"
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Besig met installasie"
@@ -4311,18 +4384,18 @@ msgstr "Installeer pakket %s"
#
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aanvaar "
#
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4338,16 +4411,16 @@ msgstr ""
"hieroor beskik nie, druk Kanselleer om installasies vanaf diй CDROM te vermy."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -4444,7 +4517,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4522,7 +4595,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Sleutelbord"
@@ -4733,31 +4806,31 @@ msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4767,16 +4840,16 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4785,21 +4858,21 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4869,7 +4942,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4881,159 +4954,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Spieлl word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieлl waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spieлl word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-bediener"
#
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Plaaslike lкers"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5049,21 +5122,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeinnaam"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5090,19 +5163,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5126,7 +5199,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5135,28 +5208,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5164,11 +5237,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5176,15 +5249,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5195,17 +5268,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leл floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5215,7 +5288,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5247,15 +5320,15 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiлle Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5264,15 +5337,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -5308,14 +5381,14 @@ msgstr "Gevorderd"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Vorige"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Teks"
@@ -5763,7 +5836,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Sirkulкre heg %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
@@ -5903,16 +5976,16 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
@@ -5949,11 +6022,11 @@ msgstr "Maak boom toe"
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konnekteer aan die internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -5963,24 +6036,20 @@ msgstr ""
"Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
"Indien u nie weet nie, kies 'gebruik pppoe'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
#, fuzzy
msgid "Alcatel speedtouch usb"
msgstr "speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "gebruik dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "gebruik pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "gebruik pptp"
@@ -6075,7 +6144,7 @@ msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
msgid "no network card found"
msgstr "geen netwerkkaart gevind nie"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -6092,15 +6161,15 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Rekenaarnaam"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Netwerkkonfigurasie-assistent"
@@ -6138,8 +6207,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Ou konfigurasie (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN Konfigurasie"
@@ -6176,23 +6245,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Watter protokol verlang u?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Oor watter tipe kaart beskik u?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ek weet nie"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6206,19 +6280,19 @@ msgstr ""
"\n"
"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Aborteer"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Gaan voort"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Wat is u ISDN-kaart?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6226,7 +6300,7 @@ msgstr ""
"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
"PCI-kaart op die volgende skerm."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
@@ -6278,7 +6352,7 @@ msgstr "Eerste DNS-bediener (opsioneel)"
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6286,7 +6360,7 @@ msgstr ""
"\n"
"U kan diskonnekteer or herkonfigureer."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6294,11 +6368,11 @@ msgstr ""
"\n"
"U kan u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "U is tans aan die internet gekonnekteer."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6306,33 +6380,33 @@ msgstr ""
"\n"
"U kan aan die internet konnekter of u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "U is nie tans aan die internet gekonnekteer nie."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konnekteer"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Diskonnekteer"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Stel netwerk op"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetkonneksie en konfigurasie"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6351,12 +6425,12 @@ msgstr ""
"\n"
"Drk OK om voort te gaan."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6367,7 +6441,7 @@ msgstr ""
"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6379,72 +6453,72 @@ msgstr ""
"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Kies die profiel om te konfigureer"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Kundige bedryfsvlak"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normale modemkonneksie"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "Op poort %s bespeur"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN konneksie"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s bespeur"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL konneksie"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "op koppelvlak %s bespeur"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabelkonneksie"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabelkonneksie bespeur"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN konneksie"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(e) bespeur"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Kies die konneksie wat u wil konfigureer"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6454,23 +6528,23 @@ msgstr ""
"Kies die een wat u verlang.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internetkonneksie"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6481,7 +6555,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6491,7 +6565,7 @@ msgstr ""
"\n"
"Die kongiurasie gaan op u stelsel toegepas word.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6499,14 +6573,14 @@ msgstr ""
"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
"om die rekenaarnaamveranderingprobleem te voorkom."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6518,7 +6592,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6528,45 +6602,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6578,42 +6652,53 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Instaanbediener moet begin met ftp://"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Instaanbediener moet begin met http://"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8018,7 +8103,7 @@ msgstr "Netwerk op pad af"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8526,11 +8611,6 @@ msgstr ""
"Vul asb. die FTP-instaanbediener inligting in\n"
"Los dit oop indien u nie FTP-instaanbediener verlang nie"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Instaanbediener moet begin met http://"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8576,6 +8656,43 @@ msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Eksterne lpd drukkeropsies"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Verstek)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Wag asb. installasie word voorberei"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -8874,7 +8991,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8968,7 +9085,7 @@ msgstr "Konnekteer aan die internet"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9015,7 +9132,7 @@ msgstr "Netwerkkoppelvlak"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9040,7 +9157,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9056,7 +9173,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9071,7 +9188,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9120,8 +9237,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9158,11 +9275,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installeer pakket %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
@@ -9210,16 +9327,6 @@ msgstr "Voeg gebruiker by"
msgid "Add/Del Clients"
msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9272,53 +9379,68 @@ msgstr "Voeg gebruiker by"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Sluit konfigurasie af"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "herkonfigureer"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9441,13 +9563,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Toetsbladsye"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9456,41 +9578,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Kan nie %s oopmaak nie: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9501,68 +9623,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9570,831 +9692,833 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fout met die les van lкer %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Selekteer lOer"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipe"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Stel lкerstelsels op"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlкer"
#
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN konneksie"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Rekenaarnaam"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Wagwoord"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Bedienernaam:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -10402,102 +10526,102 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in lкer"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Stel lкerstelsels op"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10529,7 +10653,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10538,7 +10662,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10579,7 +10703,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10607,17 +10731,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10634,7 +10758,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10674,7 +10798,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10685,7 +10809,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10698,7 +10822,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10780,8 +10904,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsole hulpprogramme"
@@ -10858,28 +10982,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Poort"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Verlaay installasie"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
@@ -10979,10 +11103,6 @@ msgstr "Assistent..."
msgid "Apply"
msgstr "Pas toe"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Gekonnekteer"
@@ -11096,7 +11216,7 @@ msgstr "Modulenaam"
msgid "Size"
msgstr "Grootte"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11161,12 +11281,12 @@ msgstr "Uitset"
msgid "Build the disk"
msgstr "Bou die skyf"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11175,12 +11295,12 @@ msgstr ""
"Daar is geen medium for toestel %s nie.\n"
"Sit asb. een in."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Kon nie vurk nie: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11662,157 +11782,157 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Werkgroep:"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partisie %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Gebruikerskode"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Uitwis"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Klaar"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Voeg module by"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Voeg drukker by"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Verwyder tou"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Aanvaar gebruiker"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Weergawe: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Poort"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Stoor pakketseleksie"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Gebruikerskode"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Werkgroep:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11824,137 +11944,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "herlaaiskyfskepping"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resolusie"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Kies 'n lкer"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Drukkernaam:"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Postinstallasiekonfigurasie"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Verlaat"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Installeer stelsel"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Konfigureer dienste"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Teruglus"
+msgid "Preview"
+msgstr "toestel"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "toestel"
+msgid "Save theme"
+msgstr "Installeer stelsel"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Kies 'n monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Drukkermodelkeuse"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Tik drukkertoestel URI in"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Toestel word afgetas..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12095,6 +12225,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
@@ -12125,11 +12262,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Kon nie die intydse opgradering begin nie !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12413,16 +12550,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12498,7 +12632,7 @@ msgstr "Installeer stelsel"
msgid "Exit install"
msgstr "Verlaay installasie"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12750,6 +12884,21 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Postinstallasiekonfigurasie"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Teruglus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Instaanbediener moet begin met ftp://"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Verlaat"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
@@ -12875,9 +13024,6 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Test again"
#~ msgstr "Toets weer"
-#~ msgid "Setting security level"
-#~ msgstr "Sekuriteitsvlak word gestel."
-
#~ msgid "Select a graphics card"
#~ msgstr "Selekteer 'n videokaart"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 63f9c0c05..621bd9f70 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic \n"
@@ -90,24 +90,24 @@ msgstr "Ш§Ш№ШЇШ§ШЇ ЩѓЩ„ Ш§Щ„Ш±Ш¤Щ€Ші ШЁШґЩѓЩ„ Щ…ШіШЄЩ‚Щ„"
msgid "Use Xinerama extension"
msgstr "Ш§ШіШЄШ®ШЇШ§Щ… Ш§Щ…ШЄШЇШ§ШЇ Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Щ‚Щ… ШЁШҐШ№ШЇШ§ШЇ Ш§Щ„ШЁШ·Ш§Щ‚Ш© \"%s\" ЩЃЩ‚Ш· (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s Щ…Ш№ ШЄШіШ±ЩЉШ№ Ш«Щ„Ш§Ш«ЩЉ Ш§Щ„ШЈШЁШ№Ш§ШЇ"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"ШЁШ·Ш§Щ‚ШЄЩѓ Щ…ШЇШ№Щ€Щ…Ш© Ш№Щ† Ш·Ш±ЩЉЩ‚ XFree %s Ш§Щ„ШЄЩЉ ЩЉЩ…ЩѓЩ† ШЈЩ† ШЄЩѓЩ€Щ† Щ…ШЇШ№Щ€Щ…Ш© ШЁШґЩ„ ШЈЩЃШ¶Щ„ ЩЃЩЉ Ш§Щ„Щ€Ш¶Ш№ "
"Ш«Щ†Ш§Ш¦ЩЉ Ш§Щ„ШЈШЁШ№Ш§ШЇ."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "ЩЉЩ…ЩѓЩ† Щ„ШЁШ·Ш§Щ‚ШЄЩѓ Ш§Щ„Ш­ШµЩ€Щ„ Ш№Щ„Щ‰ ШЇШ№Щ… Щ„Щ„ШЄШіШ±ЩЉШ№ Ш«Щ„Ш§Ш«ЩЉ Ш§Щ„ШЈШЁШ№Ш§ШЇ Щ…Ш№ XFree %s"
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s Щ…Ш№ ШЇШ№Щ… ШЄШ¬Ш±ЩЉШЁЩЉ Щ„Щ„Ш±ШіЩ€Щ… Ш«Щ„Ш§Ш«ЩЉШ© Ш§Щ„ШЈШЁШ№Ш§ШЇ"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"ШЁШ·Ш§Щ‚ШЄЩѓ Щ…ШЇШ№Щ€Щ…Ш© Ш№Щ† Ш·Ш±ЩЉЩ‚ XFree %s Ш§Щ„ШЄЩЉ ЩЉЩ…ЩѓЩ† ШЈЩ† ШЄЩѓЩ€Щ† Щ…ШЇШ№Щ€Щ…Ш© ШЁШґЩѓЩ„ ШЈЩЃШ¶Щ„ ЩЃЩЉ Щ€Ш¶Ш№ЩЉШ© "
"Ш§Щ„Ш±ШіЩ€Щ… Ш«Щ†Ш§Ш¦ЩЉШ© Ш§Щ„ШЈШЁШ№Ш§ШЇ."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,12 +148,12 @@ msgstr ""
"ЩЉЩ…ЩѓЩ† Щ„ШЁШ·Ш§Щ‚ШЄЩѓ Ш§Щ„ШЄЩ…ШЄШ№ ШЁШЇШ№Щ… Щ„Щ„Ш±ШіЩ€Щ… Ш«Щ„Ш§Ш«ЩЉШ© Ш§Щ„ШЈШЁШ№Ш§ШЇ Щ…Ш№ XFree %s, \n"
"Щ„Ш§Ш­Шё ШЈЩ† Щ‡Ш°Ш§ Ш§Щ„ШЇШ№Щ… ШЄШ¬Ш±ЩЉШЁЩЉ Щ€ Щ‚ШЇ ЩЉШЄШіШЁШЁ ЩЃЩЉ Ш§ЩЉЩ‚Ш§ЩЃ Ш¬Щ‡Ш§ШІЩѓ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Щ…ШґШєЩ„ Ш№Ш±Ш¶ Ш§Щ„ШЄШ«ШЁЩЉШЄ)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Щ…Ш®ШµШµ"
@@ -174,32 +174,32 @@ msgstr "ШЇЩ‚Ш© Ш§Щ„Ш№Ш±Ш¶"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Щ…Щ€Ш§ЩЃЩ‚"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Ш®Ш±Щ€Ш¬"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -295,25 +295,25 @@ msgstr "Ш§Ш®ШЄШ± ШЇЩ‚Ш© Ш§Щ„Ш№Ш±Ш¶ Щ€ Ш№Щ…Щ‚ Ш§Щ„ШЈЩ„Щ€Ш§Щ…"
msgid "Graphics card: %s"
msgstr "ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШґШ§ШґШ©: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Ш§Щ„ШєШ§ШЎ"
@@ -390,11 +390,11 @@ msgstr "Ш®Ш§ШЇЩ… XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Щ…ШґШєЩ„ XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Щ€Ш§Ш¬Щ‡Ш© Ш±ШіЩ€Щ…ЩЉШ© Ш№Щ†ШЇ ШЁШЇШЎ Ш§Щ„ШЄШґШєЩЉЩ„"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -403,7 +403,7 @@ msgstr ""
"ЩЉЩ…ЩѓЩ†Щ†ЩЉ Ш¬Ш№Щ„ Ш¬Щ‡Ш§ШІЩѓ ЩЉШЁШЇШЈ X ШЁШґЩѓЩ„ ШўЩ„ЩЉ ШЁШ№ШЇ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№.\n"
"Щ‡Щ„ ШЄШ±ЩЉШЇ X ШЈЩ† ШЁЩЉШЇШЈ ШЁШ№ШЇ ШҐШ№Ш§ШЇШ© ШЄШґШєЩЉЩ„ Ш¬Щ‡Ш§ШІЩѓШџ"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -415,7 +415,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr ""
@@ -487,7 +487,7 @@ msgstr "Щ…ШЇЩ…Ш¬"
msgid "compact"
msgstr "Щ…ШЇЩ…Ш¬"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Щ€Ш¶Ш№ЩЉШ© Ш§Щ„ЩЃЩЉШЇЩЉШ©"
@@ -495,17 +495,17 @@ msgstr "Щ€Ш¶Ш№ЩЉШ© Ш§Щ„ЩЃЩЉШЇЩЉШ©"
msgid "Delay before booting default image"
msgstr "ШЄЩ€Щ‚ЩЉШЄ Щ…Ш§ Щ‚ШЁЩ„ Ш§Щ‚Щ„Ш§Ш№ Ш§Щ„ШµЩ€Ш±Ш© Ш§Щ„Ш§ЩЃШЄШ±Ш§Ш¶ЩЉШ©"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш±"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± (Ш«Ш§Щ†ЩЉШ©)"
@@ -539,14 +539,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Ш®ЩЉШ§Ш± ``ШЄШґШЇЩЉШЇ Ш®ЩЉШ§Ш±Ш§ШЄ ШіШ·Ш± Ш§Щ„ШЈЩ€Ш§Щ…Ш±`` ШЁШЇЩ€Щ† Щ‚Ш§Ш¦ШЇШ© Щ…Щ† ШЇЩ€Щ† ЩѓЩ„Щ…Ш© Щ…Ш±Щ€Ш±"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Ш±Ш¬Ш§ШЎ Ш¬Ш§Щ€Щ„ Щ…Ш±Ш© ШЈШ®Ш±Щ‰"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "ЩѓЩ„Щ…Ш§ШЄ Ш§Щ„Щ…Ш±Щ€Ш± ШєЩЉШ± Щ…ШЄШ·Ш§ШЁЩ‚Ш©"
@@ -583,7 +583,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -591,155 +591,155 @@ msgstr ""
"Щ‡Ш§ Щ‡Щ†Ш§ Ш§Щ„Щ…ШЇШ®Щ„Ш§ШЄ Ш§Щ„Щ…Ш®ШЄЩ„ЩЃШ©.\n"
"ЩЉЩ…ЩѓЩ†Щѓ Ш§Ш¶Ш§ЩЃШ© Щ…ШЇШ®Щ„Ш§ШЄ ШЈШ®Ш±Щ‰ ШЈЩ€ ШЄШєЩЉЩЉШ± Ш§Щ„Щ…Щ€Ш¬Щ€ШЇЩЉЩ†."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ш§Ш¶Ш§ЩЃШ©"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Ш§Щ†ШЄЩ‡Щ‰"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "ШЄШ№ШЇЩЉЩ„"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Щ…Ш§ Щ†Щ€Ш№ Ш§Щ„Щ…ШЇШ®Щ„ Ш§Щ„Ш°ЩЉ ШЄШ±ЩЉШЇ Ш§Ш¶Ш§ЩЃШЄЩ‡Шџ"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Щ„ЩЉЩ†ЩѓШі"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Щ†ШёШ§Щ… ШўШ®Ш± (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Щ†ШёШ§Щ… ШўШ®Ш± (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Щ†ШёШ§Щ… ШўШ®Ш± (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "ШµЩ€Ш±Ш©"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Ш§Щ„Ш¬Ш°Ш±"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Ш§Щ„Ш­Ш§Щ‚"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Щ„Щ„Щ‚Ш±Ш§ШЎШ© Щ€ Ш§Щ„ЩѓШЄШ§ШЁШ©"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Ш§Щ„Ш¬ШЇЩ€Щ„"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "ШєЩЉШ± ШўЩ…Щ†"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Ш№Щ†Щ€Ш§Щ†"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Ш§Щ„ШҐЩЃШЄШ±Ш§Ш¶ЩЉ"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Ш­Ш¬Щ… Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Щ„Ш§ ЩЃЩЉШЇЩЉЩ€"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ш§ШІЩ„ Ш§Щ„Щ…ШЇШ®Щ„"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "ШєЩЉШ± Щ…ШіЩ…Щ€Ш­ ШЁШ§Щ„Ш№Щ„Ш§Щ…Ш§ШЄ Ш§Щ„ЩЃШ§Ш±ШєШ©"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "ЩЉШ¬ШЁ ШЈЩ† ШЄШ­ШЇШЇ ШµЩ€Ш±Ш© Ш§Щ„Щ†Щ€Ш§Ш©"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "ЩЉШ¬ШЁ Ш№Щ„ЩЉЩѓ ШЄШ­ШЇЩЉШЇ ШЄЩ‚ШіЩЉЩ… Ш¬Ш°Ш±"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Щ‡Ш°Щ‡ Ш§Щ„Ш№Щ„Ш§Щ…Ш© Щ…ШіШЄШ®ШЇЩ…Ш© Щ…ШіШЁЩ‚Ш§"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "ШЄЩ… Ш§ЩЉШ¬Ш§ШЇ %s %s Щ€Ш§Ш¬Щ‡Ш§ШЄ"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Щ‡Щ„ Ш№Щ†ШЇЩѓ Щ€Ш§Ш­ШЇШ© ШЈШ®Ш±Щ‰Шџ"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Щ‡Щ„ Щ„ШЇЩЉЩѓ ШЈЩЉ Щ€Ш§Ш¬Щ‡Ш§ШЄ %sШџ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Щ„Ш§"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Щ†Ш№Щ…"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Ш№Ш±Ш¶ Щ…Ш№Щ„Щ€Щ…Ш§ШЄ Ш§Щ„Ш№ШЄШ§ШЇ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ш¬Ш§Ш±ЩЉ ШЄШ«ШЁЩЉШЄ Щ…ШґШєЩ„ %s Щ„Щ„ШЁШ·Ш§Щ‚Ш© %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(Ш§Щ„Щ€Ш­ШЇШ© %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"Ш§Щ„Ш®ЩЉШ§Ш±Ш§ШЄ ЩЃЩЉ Щ‡ЩЉШ¦Ш© ``name=value name2=value2 ...'' \n"
"Щ…Ш«Щ„Ш§, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ Ш§Щ„Щ€Ш­ШЇШ©:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "ШЈЩЉ Щ…ШґШєЩ„ %s ЩЉШ¬ШЁ ШЈЩ† Ш§ШіШЄШ®ШЇЩ…Щ‡Шџ"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -778,15 +778,15 @@ msgstr ""
"Щ„ЩѓЩ†\n"
"Щ„Ш§ ЩЉШ¬ШЁ ШЈЩ† ЩЉШЄШіШЁШЁ Ш°Щ„Щѓ ЩЃЩЉ ШЈЩЉ Щ…ШґШ§ЩѓЩ„."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "ШЄШ­Щ‚Щ‚ ШўЩ„ЩЉ"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Ш­ШЇШЇ Ш§Щ„Ш®ЩЉШ§Ш±Ш§ШЄ"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -795,64 +795,64 @@ msgstr ""
"ЩЃШґЩ„ ШЄШ­Щ…ЩЉЩ„ Ш§Щ„Щ€Ш­ШЇШ© %s.\n"
"Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§Щ„Щ…Ш­Ш§Щ€Щ„Ш© Ш«Ш§Щ†ЩЉШ© ШЁЩ…Ш№Ш§Щ…Щ„Ш§ШЄ ШЈШ®Ш±Щ‰Шџ"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ ШЁШ±Ш§Щ…Ш¬ X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ ШЈШЇЩ€Ш§ШЄ rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "Ш§ШіЩ…Ш­ ШЁЩЂ\"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ Щ…Щ„ЩЃШ§ШЄ Ш§Щ„ШҐШЇШ§Ш±Ш©"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ ШЈШЇЩ€Ш§ШЄ rpm"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ ШЈШЇЩ€Ш§ШЄ rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ШЄЩ… Ш§Ш¶Ш§ЩЃШ© %s Щ…ШіШЁЩ‚Ш§)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± Щ‡Ш°Щ‡ ШЁШіЩЉШ·Ш© Ш¬ШЇШ§"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Ш±Ш¬Ш§ШЎЩ‹ Щ‚Щ… ШЁШҐШ№Ш·Ш§ШЎ Ш§ШіЩ… Щ…ШіШЄШ®ШЇЩ…"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ… ЩЉШ¬ШЁ ШЈЩ† ЩЉШ­ШЄЩ€ЩЉ ЩЃЩ‚Ш· Ш№Щ„Щ‰ Ш§Щ„Ш­Ш±Щ€ЩЃ Ш§Щ„ШµШєЩЉШ±Ш©, Ш§Щ„ШЈШ±Щ‚Ш§Щ…, `-' Щ€ `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ… Щ…ЩЏШ¶Ш§ЩЃ Щ…ШіШЁЩ‚Ш§"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ… Щ…ЩЏШ¶Ш§ЩЃ Щ…ШіШЁЩ‚Ш§"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Ш§Ш¶ЩЃ Щ…ШіШЄШ®ШЇЩ…"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -861,32 +861,32 @@ msgstr ""
"ШЈШЇШ®Щ„ Щ…ШіШЄШ®ШЇЩ…\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Щ€Ш§ЩЃЩ‚ Ш№Щ„Щ‰ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Ш§Щ„Ш§ШіЩ… Ш§Щ„Ш­Щ‚ЩЉЩ‚ЩЉ"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Ш§Щ„ШєЩ„Ш§ЩЃ"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "ШЈЩЉЩ‚Щ€Щ†Ш©"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "ШЇШ®Щ€Щ„ ШўЩ„ЩЉ"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -894,54 +894,54 @@ msgstr ""
"ЩЉЩ…ЩѓЩ†Щ†ЩЉ Ш§Ш№ШЇШ§ШЇ Ш¬Щ‡Ш§ШІЩѓ Щ„ШЄШіШ¬ЩЉЩ„ Ш§Щ„ШЇШ®Щ€Щ„ ШўЩ„ЩЉЩ„ Щ„Щ…ШіШЄШ®ШЇЩ… Щ…Ш§.\n"
"Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§ШіШЄШ®ШЇШ§Щ… Щ‡Ш°Щ‡ Ш§Щ„Щ…ЩЉШІШ©Шџ"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Ш§Ш®ШЄШ± Ш§Щ„Щ…ШіШЄШ®ШЇЩ… Ш§Щ„Ш§ЩЃШЄШ±Ш§Ш¶ЩЉ:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Ш§Ш®ШЄШ± Щ…ШЇЩЉШ± Ш§Щ„Щ†Щ€Ш§ЩЃШ° Ш§Щ„Ш°ЩЉ ШіЩЉШЄЩ… ШЄШґШєЩЉЩ„Щ‡:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ„ШєШ© Ш§Щ„Ш§ШіШЄШ®ШЇШ§Щ…."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "ЩЉЩ…ЩѓЩ†ЩѓЩ† Ш§Ш®ШЄЩЉШ§Ш± Щ„ШєШ§ШЄ ШЈШ®Ш±Щ‰ Щ€ Ш§Щ„ШЄЩЉ ШіШЄЩѓЩ€Щ† Щ…ШЄЩ€ЩЃШ±Ш© ШЁШ№ШЇ Ш§Щ„ШЄШ«ШЁЩЉШЄ"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Ш§Щ„ЩѓЩ„"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Ш§ШіЩ…Ш­ Щ„ЩѓЩ„ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ†"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Щ„Ш§ Щ…ШґШ§Ш±ЩѓШ©"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ш§Щ„Ш­ШІЩ…Ш© %s ЩЉШ¬ШЁ ШЈЩ† ШЄЩЏШ«ШЁЩ‘ШЄ. Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ«ШЁЩЉШЄЩ‡Ш§Шџ"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "ЩЉЩ…ЩѓЩ†Щѓ Ш§Щ„ШЄШµШЇЩЉШ± ШЁШ§ШіШЄШ®ШЇШ§Щ… NFS ШЈЩ€ Samba. ШЈЩЉ Щ…Щ†Щ‡Щ…Ш§ ШЄШ±ЩЉШЇ"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Ш§Щ„Ш­ШІЩ…Ш© Ш§Щ„Ш¶Ш±Щ€Ш±ЩЉШ© %s Щ…ЩЃЩ‚Щ€ШЇШ©"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -950,11 +950,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "ШґШєЩ‘Щ„ userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -962,56 +962,56 @@ msgstr ""
"Ш§Щ„Щ…ШґШ§Ш±ЩѓШ© Щ„ЩѓЩ„ Щ…ШіШЄШ®ШЇЩ… ШЄШіШЄШ®ШЇЩ… Ш§Щ„Щ…Ш¬Щ…Щ€Ш№Ш© \"fileshare\".\n"
"ЩЉЩ…ЩѓЩ†Щѓ ШЈЩ† ШЄШіШЄШ®ШЇЩ… userdrake Щ„ШҐШ¶Ш§ЩЃШ© Щ…ШіШЄШ®ШЇЩ… ЩЃЩЉ Щ‡Ш°Щ‡ Ш§Щ„Щ…Ш¬Щ…Щ€Ш№Ш©."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Щ…Ш±Ш­ШЁШ§ ШЁШ§Щ„Щ…Ш®ШЄШ±Щ‚ЩЉЩ†"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "ЩЃЩ‚ЩЉШ±"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ш§Щ„Щ‚ЩЉШ§ШіЩЉ"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Щ…Ш±ШЄЩЃШ№"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Щ…Ш±ШЄЩЃШ№ ШЈЩѓШ«Ш±"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Щ…Ш±ШЄЩЃШ№ Ш¬ШЇШ§"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1021,40 +1021,40 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ШЄШ§Ш±ЩЉШ® Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ©"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Щ…ШіШЄЩ€Щ‰ Ш§Щ„ШЈЩ…Щ†"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "ШҐШіШЄШ®ШЇЩ… libsafe Щ„Щ„Щ…Щ„Щ‚Щ…Ш§ШЄ"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1062,7 +1062,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1079,58 +1079,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "Щ„Ш§ ШЄЩ€Ш¬ШЇ Щ…ШіШ§Ш­Щ€ ЩѓШ§ЩЃЩЉШ© ЩЃЩЉ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "ШіШ·Ш­ Ш§Щ„Щ…ЩѓШЄШЁ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "ЩЉЩ…ЩѓЩ†Щѓ ШЄШ«ШЁЩЉШЄ Щ…Ш­Щ…Щ‘Щ„ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№ Ш№Щ„Щ‰ Ш§Щ„ШЄШ¬ШІШ¦Ш© %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "Щ„Ш§ ШЄЩ€Ш¬ШЇ Щ…ШіШ§Ш№ШЇШ© Щ„Щ‡Ш°Ш§ Ш­ШЄЩ‰ Ш§Щ„ШўЩ†.\n"
@@ -1182,106 +1182,106 @@ msgstr "Щ€Ш¶Ш№ Lilo/grub"
msgid "Yaboot mode"
msgstr "Щ€Ш¶Ш№ Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "ШЄШ«ШЁЩЉШЄ Ш§Щ„Щ†ШёШ§Щ…"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Ш§Ш№Щ…Щ„ ШЄШ¬ШІШ¦Ш© Ш¬ШЇЩЉШЇШ©"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Ш®Ш·ШЈ"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Ш¬Ш§Ш±ЩЉ Щ†ШіШ® %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Щ„Ш§ ЩЃЩЉШЇЩЉЩ€"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Ш§Ш®ШЄШ± Щ†Щ€Ш№ Ш§Щ„ШЄШ«ШЁЩЉШЄ"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1290,21 +1290,21 @@ msgstr ""
"ШЈЩ†ШЄ ШЄШіШЄШ®ШЇЩ… %s ЩѓЩ…ШЇЩЉШ± Ш§Щ‚Щ„Ш§Ш№ Ш­Ш§Щ„ЩЉШ§.\n"
"Ш§Ш¶ШєШ· Ш№Щ„Щ‰ ШЄЩ‡ЩЉШ¦Ш© Щ„ШЄШґШєЩЉЩ„ Щ…Ш№Ш§Щ„Ш¬ Ш§Щ„ШҐШ№ШЇШ§ШЇ"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "ШҐШ№ШЇШ§ШЇ"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr ""
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1313,44 +1313,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Щ€Ш¶Ш№ Ш§Щ„Щ†ШёШ§Щ…"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "ШґШєЩ‘Щ„ X-Window Ш№Щ†ШЇ ШЁШЇШЎ Ш§Щ„ШЄШґШєЩЉЩ„"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Щ„Ш§, Щ„Ш§ ШЈШ±ЩЉШЇ ШЇШ®Щ€Щ„Ш§ ШЈЩ„ЩЉШ§"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Щ†Ш№Щ…, ШЈШ±ЩЉШЇ ШЇШ®Щ€Щ„Ш§ ШўЩ„ЩЉШ§ Щ…Ш№ Щ‡Ш°Ш§ )Ш§Щ„Щ…ШіШЄШ®ШЇЩ…, ШіШ·Ш­ Ш§Щ„Щ…ЩѓШЄШЁ("
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Щ…Щ€Ш§ЩЃЩ‚"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Щ„Щ… ЩЉЩ…ЩѓЩ† ЩЃШЄШ­ /etc/inittab Щ„Щ„Щ‚Ш±Ш§ШЎШ©: %s"
@@ -1447,53 +1447,61 @@ msgstr "Ш§Щ„Щ†Щ…ШіШ§"
msgid "United States"
msgstr "Ш§Щ„Щ€Щ„Ш§ЩЉШ§ШЄ Ш§Щ„Щ…ШЄШ­ШЇШ©"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "Ш¬ШЇЩЉШЇ"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ш§ШІЩ„ Ш§Щ„ШЄШ¬Щ‡ЩЉШІ"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ш¬Щ‡ШІ"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Ш®Ш§ШЇЩ…"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Щ†Щ‚Ш·Ш© Ш§Щ„ШЄШ¬Щ‡ЩЉШІ"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Ш±Ш¬Ш§ШЎ ШЈШЇШ®Щ„ ШіШ±Ш№Ш© ШіЩ€Ш§Щ‚Ш© ЩѓШЄШ§ШЁШ© Ш§Щ„ШЈЩ‚Ш±Ш§Шµ"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Ш®Ш§ШЇЩ…"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Щ†Щ‚Ш·Ш© Ш§Щ„ШЄШ¬Щ‡ЩЉШІ: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Ш§Щ„Ш®ЩЉШ§Ш±Ш§ШЄ: %s"
@@ -1584,7 +1592,7 @@ msgstr "ЩЃШ§Ш±Шє"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "ШЈШ®Ш±Щ‰"
@@ -1724,7 +1732,7 @@ msgstr ""
"Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ… Ш§Щ„Щ…Ш­ЩЃЩ€Шё Щ„ЩЉШі ШЁЩ†ЩЃШі Ш§Щ„Ш­Ш¬Щ…\n"
"Щ„Ш§ ШІЩ„ШЄ ШЄШ±ЩЉШЇ Ш§Щ„ШҐЩѓЩ…Ш§Щ„Шџ"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "ШЄШ­Ш°ЩЉШ±"
@@ -2254,7 +2262,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
@@ -2268,23 +2276,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "Ш§ШЁШ­Ш« ЩЃЩЉ ШЈШ¬Щ‡ШІШ© Ш§Щ„Ш®Ш§ШЇЩ…"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ШЄШ¬Щ‡ЩЉШІ %s Щ‚ШЇ ЩЃШґЩ„"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Щ„Ш§ ШЈШ№Ш±ЩЃ ЩѓЩЉЩЃ ШЈШ¬Щ‡ШІ %s ЩЃЩЉ Ш§Щ„Щ†Щ€Ш№ %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2362,48 +2370,111 @@ msgstr "Щ„Ш§ ШґЩЉШ¦ Щ„Щ„Ш№Щ…Щ„"
msgid "Error opening %s for writing: %s"
msgstr " ЩЃШЄШ­Ш© Ш§Щ„Ш®Ш·ШҐ %s Щ„Щ„ЩѓШЄШ§ШЁШ© :%s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr " CUPS Ш§Ш№ШЇШ§ШЇШ§ШЄ"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Ш§Щ„Щ…Ш­Ш±Щѓ"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Щ…ШіШ§Ш№ШЇШ©"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "ЩЉШ±Ш¬Щ‰ Ш§Щ„ШҐЩ†ШЄШёШ§Ш±... Ш¬Ш§Ш±ЩЉ ШЄШ·ШЁЩЉЩ‚ Ш§Щ„ШҐШ№ШЇШ§ШЇШ§ШЄ"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Щ…Щ† ЩЃШ¶Щ„Щѓ Ш§Щ†ШЄШёШ±"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "Щ…ШґШєЩ„ X"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "ШєЩЉШ± Щ…Ш№Ш±Щ€ЩЃ"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2528,7 +2599,8 @@ msgid "/_Quit"
msgstr "Ш®Ш±Щ€Ш¬"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Щ…ШіШ§Ш№ШЇШ©"
@@ -2548,75 +2620,76 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_ШЄЩ‚Ш±ЩЉШ± Ш®Ш·ШЈ"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Щ…ШіШ§Ш№ШЇШ©/_Ш­Щ€Щ„ Ш§Щ„ШЁШ±Щ†Ш§Щ…Ш¬..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "ШЄШ­Щ‚Щ‚ ШўЩ„ЩЉ"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Ш§Щ„ШЄШ­Щ‚Щ‚ Щ…Щ† Ш§Щ„ШЈЩ‚Ш±Ш§Шµ Ш§Щ„ШµЩ„ШЁШ©"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Ш№Ш±Ш¶ Щ…Ш№Щ„Щ€Щ…Ш§ШЄ Ш§Щ„Ш№ШЄШ§ШЇ"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Ш§Ш№Ш±Ш¶ Ш§Щ„Щ…Ш№Щ„Щ€Щ…Ш§ШЄ"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "ШҐШ№ШЇШ§ШЇ Ш§Щ„ЩЃШЈШ±Ш©"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Щ…Щ† ЩЃШ¶Щ„Щѓ Ш§Щ†ШЄШёШ±"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§ШІШ§Щ„Ш© Ш§Щ„Ш·Ш§ШЁШ№Ш© \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d Ш«Щ€Ш§Щ†"
@@ -3719,7 +3792,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3734,7 +3807,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3743,31 +3816,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS Щ„Ш§ ШЄШіШ·ЩЉШ№ Ш§ ШіШЄШ№Щ…Ш§Щ„ Щ‡Ш° Ш§ Ш§Щ„ШЁШ±Щ†Ш§Щ…Ш¬ Щ…Ш№"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr ""
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -3977,7 +4050,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr ""
@@ -4003,11 +4076,11 @@ msgstr ""
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr ""
@@ -4081,7 +4154,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr ""
@@ -4101,7 +4174,7 @@ msgstr ""
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr ""
@@ -4128,17 +4201,17 @@ msgid "Installing package %s"
msgstr ""
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Щ‚ШЁЩ€Щ„"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4149,16 +4222,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr ""
@@ -4254,7 +4327,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4332,7 +4405,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­"
@@ -4532,66 +4605,66 @@ msgstr ""
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4630,7 +4703,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4642,155 +4715,155 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Ш®Ш§ШЇЩ… NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШµЩ‘Щ€ШЄ ISA Щ‡Щ„ Ш№Щ†ШЇЩѓ Ш№Щ†ШЇ"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Ш§Щ„ЩЃШЈШ±Ш©"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ш·Ш§ШЁШ№Ш©"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Ш§Ш­ШµЩ„ Ш№Щ„Щ‰ Ш®Ш·Щ€Ш· Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ш§Щ„ШЄШ­Щ‚Щ‚"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Ш®Ш§ШЇЩ… LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr " Ш§Щ„Ш®Ш§ШЇЩ… NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4806,21 +4879,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Ш§Щ„ШЄШ­Щ‚Щ‚"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domain name"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4838,19 +4911,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Ш§Щ„Щ…ШЇШ®Щ„ Ш§Щ„Щ…Ш±Щ† Ш§Щ„Ш«Щ‘Ш§Щ†ЩЉ"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "ШЄШ®Ш·ЩЉ"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4866,7 +4939,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -4875,28 +4948,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "ШўШіЩЃ , Щ„Ш§ Щ…ШЇШ®Щ„ Щ…Ш±Щ† Щ…ШЄШ§Ш­"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "ШЈШЇШ®Щ„ Щ‚Ш±Шµ Щ…Ш±Щ† ШЁШ§Щ„ШЇЩ‘Ш§Ш®Щ„ %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr " ШҐЩ†ШґШ§ШЎ Щ‚Ш±Шµ Ш§Щ„Ш§ Щ‚Щ„Ш§ Ш№ "
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr " bootloader ШҐШ№ШЇШ§ШЇ "
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4904,25 +4977,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr " aboot Щ‡Щ„ ШЄШ±ЩЉШЇ ШЈЩ† ШЄШіШЄШ®ШЇЩ… "
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "bootloader Ш§Щ„ШЄЩ‘Ш±ЩѓЩЉШЁ "
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4933,24 +5006,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4969,16 +5042,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4987,15 +5060,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr ""
@@ -5030,14 +5103,14 @@ msgstr "Щ…ШЄЩ‚ШЇЩ…"
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<-ШіШ§ШЁЩ‚ "
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Ш§Щ„ШЄШ§Щ„ЩЉ"
@@ -5480,7 +5553,7 @@ msgstr "Right \"Windows\" key"
msgid "Circular mounts %s\n"
msgstr "Circular mounts %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5618,15 +5691,15 @@ msgstr "Щ€Щ„Ш§ Щ€Ш§Ш­ШЇ"
msgid "No mouse"
msgstr "No mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Щ…Щ† ЩЃШ¶Щ„Щѓ Ш§Ш®ШЄШЁШ± Ш§Щ„ЩЃШЈШ±Ш©"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr " WHEEL! Ш­Ш±Щ‘Щѓ "
@@ -5663,34 +5736,30 @@ msgstr "Collapse Tree"
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Щ€ШµЩ‘Щ„ ШҐЩ„Щ‰ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ "
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "use dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "use pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "use pptp"
@@ -5789,7 +5858,7 @@ msgstr ""
msgid "no network card found"
msgstr "Щ„Ш§ ШЁШ·Ш§Щ‚Ш© ШґШЁЩѓШ© Щ€Ш¬ШЇШЄ "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Ш§ Ш№ШЇШ§ШЇ ШґШЁЩѓШ©"
@@ -5801,15 +5870,15 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Host Ш§ШіЩ… "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Щ…Ш№Ш§Щ„Ш¬ ШҐШ№ШЇШ§ШЇ Ш§Щ„ШґШЁЩѓШ©"
@@ -5847,8 +5916,8 @@ msgid "Old configuration (isdn4net)"
msgstr "ШҐШ№ШЇШ§ШЇ Щ‚ШЇЩЉЩ… (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN ШҐШ№ШЇШ§ШЇ "
@@ -5880,23 +5949,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr ""
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr ""
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Щ„Ш§ ШЈШ№Ш±ЩЃ "
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5905,25 +5979,25 @@ msgid ""
"card.\n"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "ШҐЩ†Щ‡Ш§ШЎ"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "ШЄШ§ШЁШ№"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "ISDN Щ…Ш§ Щ‡ЩЉШ© ШЁШ·Ш§Щ‚ШЄЩѓ"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
@@ -5975,54 +6049,54 @@ msgstr "( Ш®Ш§ШЇЩ… Ш§ Ш§Щ„ШЈЩ€Щ‘Щ„ ( Ш§Ш®ШЄЩЉШ§Ш±ЩЉЩ‘ "
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Ш§ШЄШµЩ„"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Ш§Щ‚Ш·Ш№ Ш§Щ„ШҐШЄШµШ§Щ„"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Щ‚Щ… ШЁШҐШ№ШЇШ§ШЇ Ш§Щ„ШҐШЄШµШ§Щ„"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6034,12 +6108,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6047,7 +6121,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6055,95 +6129,95 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Щ€Ш¶Ш№ЩЉШ© Ш§Щ„Ш®ШЁЩЉШ±"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN connection"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detected %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Щ€ШµЩ„Ш© ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Щ€ШµЩ„Ш© LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Щ€ШµЩ„Ш© Ш§Щ†ШЄШ±Щ†ШЄ"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Ш§ Ш№ШЇШ§ШЇ Ш§Щ„ШґЩ‘ШЁЩѓШ© "
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6151,27 +6225,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6179,49 +6253,49 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP address"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatic IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Ш§ШЁШЇШЈ Ш№Щ†ШЇ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6229,41 +6303,49 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Ш§Щ„Ш®Ш§ШЇЩ… DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway device"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:380
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxies Ш§Ш№ШЇШ§ШЇ"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
#: ../../network/shorewall.pm_.c:24
@@ -7584,7 +7666,7 @@ msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„Ш·ШЁШ§Ш№Ш© Ш№Щ„Щ‰ Ш§Щ„Ш·Ш§ШЁШ№Ш© \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8060,10 +8142,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr ""
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8109,6 +8187,42 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Щ…ШіШЄЩ€Щ‰ Ш§Щ„ШЈЩ…Щ†"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Щ…ШіШЄЩ€Щ‰ Ш§Щ„ШЈЩ…Щ†"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr ""
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr "Ш§Щ„Щ…Ш±Ш¬Ш№"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Ш¬Ш§Ш±ЩЉ Ш¶ШЁШ· Щ…ШіШЄЩ€Щ‰ Ш§Щ„ШЈЩ…Щ†"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ш±Ш¬Ш§ШЎ Ш§Щ†ШЄШёШ± ШЈШ«Щ†Ш§ШЎ Ш№Щ…Щ„ЩЉШ© ttmkfdir..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8341,7 +8455,7 @@ msgstr "ШҐЩ†ШЄШ±Щ†ШЄ"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Щ†ШёШ§Щ…"
@@ -8428,7 +8542,7 @@ msgstr "Щ€ШµЩ‘Щ„ ШҐЩ„Щ‰ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ "
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -8476,7 +8590,7 @@ msgstr "Щ€Ш§Ш¬Щ‡Ш§ШЄ Ш§Щ„ШҐШіШЄШ®ШЇШ§Щ…"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8501,7 +8615,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Ш­Щ€Щ‘Щ„ Щ…Ш§ЩѓЩЉЩ†ШЄЩѓ ШҐЩ„Щ‰ Ш®Ш§ШЇЩ… Щ‚Щ€ЩЉЩ‘ Щ…Ш№/ШЁ ЩЃЩ‚Ш· Щ†Щ‚Ш±Ш§ШЄ Щ‚Щ„ЩЉЩ„Ш© Щ…Щ† Ш§Щ„ Ш§Щ„ЩЃШЈШ±Ш© : Ш®Ш§ШЇЩ… Ш§Щ„Щ€ЩЉШЁ , "
@@ -8519,7 +8633,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8534,7 +8648,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8583,8 +8697,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -8620,11 +8734,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "ШЄШ±ЩѓЩЉШЁ Ш·Ш±Щ€ШЇ ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "ЩЉШ±Ш¬Щ‰ ШЄШіШ¬ЩЉЩ„ Ш§Щ„Ш®Ш±Щ€Ш¬ Ш«Щ… Ш§ШіШЄШ®ШЇЩ… Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ЩЉШ±Ш¬Щ‰ Ш§Ш№Ш§ШЇШ© ШЄШіШ¬ЩЉЩ„ Ш§Щ„ШЇШ®Щ€Щ„ Ш§Щ„Щ‰ %s Щ„ШЄЩ†ШґЩЉШ· Ш§Щ„ШЄШєЩЉЩЉШ±Ш§ШЄ"
@@ -8672,16 +8786,6 @@ msgstr "Ш§Ш¶ЩЃ Щ…ШіШЄШ®ШЇЩ…"
msgid "Add/Del Clients"
msgstr "DHCP Ш§Щ„Ш№Щ…ЩЉЩ„"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Щ…ШіШ§Ш№ШЇШ©"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -8735,53 +8839,68 @@ msgstr "Ш§Ш¶ЩЃ Щ…ШіШЄШ®ШЇЩ…"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP Ш§Щ„Ш№Щ…ЩЉЩ„"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„ШҐШ№ШЇШ§ШЇ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "ШҐШ№ШЇШ§ШЇ Щ…ШЄЩ‚ШЇЩ…"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "ШҐШ№ШЇШ§Ш© Ш§Щ„ШҐШ№ШЇШ§ШЇ"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "ШЈШЇШ®Щ„ Щ‚Ш±Шµ Щ…Ш±Щ† ШЁШ§Щ„ШЇЩ‘Ш§Ш®Щ„ %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "ШўШіЩЃ , Щ„Ш§ Щ…ШЇШ®Щ„ Щ…Ш±Щ† Щ…ШЄШ§Ш­"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -8898,13 +9017,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Ш§Ш¬Щ…Ш§Щ„ЩЉ Ш§Щ„ШЄЩ‚ШЇЩ…"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8913,41 +9032,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Щ„Ш§ ЩЉЩ…ЩѓЩ† ШЈЩ† ЩЉЩ†ЩЃШЄШ­ %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -8958,64 +9077,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9023,297 +9142,299 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr "Ш§Ш±ШіШ§Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ Ш№Щ† Ш·Ш±ЩЉЩ‚ FTP"
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ†ШёШ§Щ… Щ‚ШЁЩ„:"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ЩѓЩ„ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† Ш§Щ„Ш°ЩЉЩ† ШЄШ±ЩЉШЇ ШЄШ¶Щ…ЩЉЩ†Щ‡Щ… ЩЃЩЉ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ш§ШІЩ„ Ш§Щ„Щ…Ш§ШЇШ© Ш§Щ„Щ…Ш®ШЄШ§Ш±Ш©"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Ш§Щ„Щ…ШіШЄШ®ШЇЩ…Щ€Щ†"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ш§ШіШЄШ®ШЇЩ… Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ Щ„Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "ЩЃШ¶Щ„Ш§ ШЈШЇШ®Щ„ Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ¶ЩЉЩЃ ШЈЩ€ Ш№Щ†Щ€Ш§Щ† IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "ЩЃШ¶Щ„Ш§Щ‹ ШЈШЇШ®Щ„ Ш§Щ„ШЇЩ„ЩЉЩ„ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© ЩЃЩЉЩ‡ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Ш±Ш¬Ш§ШЎ ШЈШЇШ®Щ„ Ш§ШіЩ… Ш§Щ„ШЇШ®Щ€Щ„"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Ш±Ш¬Ш§ШЎ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш±"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "ШЄШ°ЩѓЩ‘Ш± ЩѓЩ„Щ…Ш© Ш§Щ„ШіЩ‘Ш±Щ‘ Щ‡Ш°Щ‡ "
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "ШҐЩ„Щ‰ Ш§Щ„Щ…ШіШ§Ш№ШЇ CD/DVDROM Ш§Щ„Ш§ШіШЄШ№Щ…Ш§Щ„ "
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ…ШіШ§Ш­Ш© Ш§Щ„Щ‚Ш±Шµ Ш§Щ„Щ…ШЇЩ…Ш¬"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "ЩЃШ¶Щ„Ш§ Щ‚Щ… ШЁШ§Щ„ШЄШЈШґЩЉШ± Щ‡Щ†Ш§ Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШіШЄШ®ШЇЩ… Щ€ШіЩЉШ· CDRW"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "ЩЃШ¶Щ„Ш§ Щ‚Щ… ШЁШ§Щ„ШЄШЈШґЩЉШ± Щ‡Щ†Ш§ Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШіШЄШ®ШЇЩ… Щ€ШіЩЉШ· CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "ЩЃЩЉЩ…Ш§ Щ…Ш¶Щ‰ CDRW Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ,ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄЩ…Ш­Щ€ "
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "ЩЃШ¶Щ„Ш§ Щ‚Щ… ШЁШ§Щ„ШЄШЈШґЩЉШ± Щ‡Щ†Ш§ Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШіШЄШ®ШЇЩ… Щ€ШіЩЉШ· CDRW"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "ЩЃШ¶Щ„Ш§ Щ‚Щ… ШЁШ§Щ„ШЄШЈШґЩЉШ± Щ‡Щ†Ш§ Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШіШЄШ®ШЇЩ… Щ€ШіЩЉШ· CDRW"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Ш§Ш®ШЄШ± Щ…Щ„ЩЃ"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "ЩЃЩЉЩ…Ш§ Щ…Ш¶Щ‰ CDRW Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ,ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄЩ…Ш­Щ€ "
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "ЩЃЩЉЩ…Ш§ Щ…Ш¶Щ‰ CDRW Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ,ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄЩ…Ш­Щ€ "
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "ЩЃЩЉЩ…Ш§ Щ…Ш¶Щ‰ CDRW Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ,ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄЩ…Ш­Щ€ "
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "ЩЃШ¶Щ„Ш§Щ‹ ШЈШЇШ®Щ„ Ш§Щ„ШЇЩ„ЩЉЩ„ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© ЩЃЩЉЩ‡ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Ш§Щ„ШґШЁЩѓШ©"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Ш§Щ„Щ†Щ€Ш№"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "ЩѓЩ„Щ‘ ШіШ§Ш№Ш© "
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "ЩЉЩ€Щ…ЩЉЩ‘Щ‹Ш§ "
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "ШЈШіШЁЩ€Ш№ЩЉЩ‘Ш§"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "ШґЩ‡Ш±ЩЉШ§"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Ш§ШіШЄШ®ШЇЩ… Ш§Щ„Щ…Ш±Ш§Щ‚ШЁ"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9321,7 +9442,7 @@ msgstr ""
"ЩЃШ¶Щ„Ш§ Ш§Ш®ШЄШ± Ш§Щ„ЩЃШЄШ±Ш© \n"
"Щ…Ш§ ШЁЩЉЩ† ЩѓЩ„ Ш№Щ…Щ„ЩЉШ© Щ†ШіШ® Ш§Ш­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -9329,78 +9450,78 @@ msgstr ""
"Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ±\n"
"Щ€ШіЩЉШ· Ш§Щ„Щ†ШіШ® Ш§Щ„Ш§Ш­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Щ…Ш§Ш°Ш§ "
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "ШЈЩЉЩ†"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Щ…ШЄЩ‰ "
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ ШЈЩѓШ«Ш±"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ШЈЩЉЩ† ШЄШ±ЩЉШЇ Ш§Щ„Щ†ШіШ® Ш§Щ„Ш§Ш­ШЄЩЉШ§Ш·ЩЉ."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "Ш№Щ„Щ‰ Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ‘Щ„ШЁ"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "Ш№ШЁШ± Ш§Щ„ШґЩ‘ШЁЩѓШ©"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ…Ш§ ШЄШ±ЩЉШЇ Щ†ШіШ®Щ‡ Ш§Ш­ШЄЩЉШ§Ш·ЩЉШ§Щ‹"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Щ†ШёШ§Щ… Ш§Щ„Щ…ШіШ§Ш№ШЇ"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Щ…ШіШЄШ®ШЇЩ…Щ€ Ш§Щ„Щ…ШіШ§Ш№ШЇ"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Ш§Ш®ШЄШ±Ш§Щ„Щ…ШіШЄШ®ШЇЩ… ЩЉШЇЩ€ЩЉЩ‘Щ‹Ш§"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -9408,7 +9529,7 @@ msgstr ""
"\n"
"Щ…ШµШ§ШЇШ± Ш§Щ„Щ…ШіШ§Ш№ШЇ :\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -9416,7 +9537,7 @@ msgstr ""
"\n"
"-Щ…Щ„ЩЃЩ‘Ш§ШЄ Ш§Щ„Щ†Щ‘ШёШ§Щ… :\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -9424,7 +9545,7 @@ msgstr ""
"\n"
"-Щ…Щ„ЩЃЩ‘Ш§ШЄ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -9432,7 +9553,7 @@ msgstr ""
"\n"
"-Ш§Щ„Щ…Щ„ЩЃЩ‘Ш§ШЄ Ш§Щ„ШЈШ®Ш±Щ‰:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -9441,32 +9562,32 @@ msgstr ""
"\n"
"- Ш§Ш­ЩЃШЇ Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ‘Щ„ШЁ Ш№Щ„Щ‰ Ш§Щ„Ш·Щ‘Ш±ЩЉЩ‚ :%s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Ш¬Щ‡Ш§ШІ Ш§Щ„ЩЃШЈШ±Ш©: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -9475,12 +9596,12 @@ msgstr ""
"\n"
"-FTP Щ€ Ш№Щ„Щ‰ host Ш§Ш­ЩЃШЇ Ш№Щ„Щ‰: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -9489,14 +9610,14 @@ msgstr ""
"\n"
"-FTP Щ€ Ш№Щ„Щ‰ host Ш§Ш­ЩЃШЇ Ш№Щ„Щ‰: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -9504,19 +9625,19 @@ msgstr ""
"\n"
"- Ш®ЩЉШ§Ш±Ш§ШЄ:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -9525,332 +9646,332 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "Ш§Ш¶ШєШ· Щ…Щ€Ш§ЩЃЩ‚ Щ„Ш§ШіШЄШ№Ш§ШЇШ© Щ…Щ„ЩЃШ§ШЄ Ш§Ш®Ш±Щ‰"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Щ‚Ш§Ш¦Щ…Ш© Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† Ш§Щ„Ш°ЩЉЩ† ШіЩЉШЄЩ… Ш§ШіШЄШ№Ш§ШЇШЄЩ‡Щ…"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ†ШёШ§Щ… Щ‚ШЁЩ„:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ШЄШ§Ш±ЩЉШ® Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ©"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Ш§ШіШЄШ®ШЇЩ… Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ Щ„Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Щ€ШµЩ„Ш© FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Щ€ШµЩ„Ш© ШўЩ…Щ†Ш©"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Ш§ШіШЄШ№ШЇ Щ…Щ† Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "ЩЃШ¶Щ„Ш§Щ‹ ШЈШЇШ®Щ„ Ш§Щ„ШЇЩ„ЩЉЩ„ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© ЩЃЩЉЩ‡ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Ш§Ш®ШЄШ± Щ€ШіЩЉШ· ШўШ®Ш± Щ„Щ„Ш§ШіШЄШ№Ш§ШЇШ© Щ…Щ†Щ‡"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Щ€ШіЩЉШ· ШўШ®Ш±"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Ш§ШіШЄШ№ШЇ Ш§Щ„Щ†Щ‘ШёШ§Щ…"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "ШЈШ№ШЇ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† "
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Ш§ШіШЄШ№ШЇ ШўШ®Ш±"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Ш§Ш®ШЄШ± Щ…ШіШ§Ш± Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ© (ШЁШЇЩ„Ш§Щ‹ Щ…Щ† / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Щ‚Щ… ШЁЩ†ШіШ® Ш§Ш­ШЄЩЉШ§Ш·ЩЉ Ш¬ШЇЩЉШЇ ЩЃШЁЩ„ Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ© (ЩЃЩ‚Ш· Щ„Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ© Ш§Щ„Щ…ШЄШЇШ±Ш¬Ш©)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "ШЈШІЩ„ ШЈШЇЩ„Ш© Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† Щ‚ШЁЩ„ Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ©"
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Ш§ШІЩ„ Ш§Щ„Щ…Ш§ШЇШ© Ш§Щ„Щ…Ш®ШЄШ§Ш±Ш©"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Ш§ШіШЄШ№ШЇ ШўШ®Ш±"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Ш§ШіШЄШ№ШЇ Щ…Щ† Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Ш§ШіШЄШ№Ш§ШЇШ© Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ…"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "ШЈШ№ШЇ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† "
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Host Ш§ШіЩ… "
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш±"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ¶ЩЉЩЃ :"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Ш§ШіШЄШ№ШЇ ШўШ®Ш±"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Ш§ШіШЄШ№ШЇ ЩѓЩ„ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Ш§ШіШЄШ№Ш§ШЇШ© Щ…Ш®ШµШµШ©"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Ш§ШіШЄШ№Ш§ШЇШ© Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ…"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "ШЈШ№ШЇ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† "
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Ш§Щ„ШіШ§ШЁЩ‚"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Ш­ЩЃШё"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Ш§ШЁЩ†ЩЉ Ш§Щ„Щ†ШіШ®Ш© Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Ш§ШіШЄШ№Ш§ШЇШ©"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ш§Щ„Ш­ШІЩ…Ш© %s ЩЉШ¬ШЁ ШЈЩ† ШЄЩЏШ«ШЁЩ‘ШЄ. Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ«ШЁЩЉШЄЩ‡Ш§Шџ"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ШЄШ§Ш±ЩЉШ® Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ©..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ€ШіЩЉШ· Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш§Щ„Щ…Ш·Щ„Щ€ШЁ Щ†ШіШ®Щ‡Ш§ Ш§Ш­ШЄЩЉШ§Ш·ЩЉШ§..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9858,59 +9979,59 @@ msgstr ""
"Щ„Щ… ЩЉШЄЩ… Ш§ЩЉШ¬Ш§ШЇ Щ…Щ„ЩЃ ШЄЩ‡ЩЉШ¦Ш© \n"
"ЩЃШ¶Щ„Ш§ Ш§Ш¶ШєШ· Щ…Ш№Ш§Щ„Ш¬ Щ„ШЈЩ€ Щ…ШЄЩ‚ШЇЩ…."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "ШЄШ­ШЄ Ш§Щ„ШЄШ·Щ€ЩЉШ± ... Ш§Щ†ШЄШёШ± ЩЃШ¶Щ„Ш§"
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ†ШёШ§Щ…"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ ШЈШ®Ш±Щ‰"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Ш§Ш¬Щ…Ш§Щ„ЩЉ Ш§Щ„ШЄЩ‚ШЇЩ…"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "Ш§Ш±ШіШ§Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ Ш№Щ† Ш·Ш±ЩЉЩ‚ FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Ш±ШіШ§Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Щ‚Щ… ШЁШ§Щ„Щ†ШіШ® Ш§Щ„ШўЩ† Щ…Щ† Щ…Щ„ЩЃ Ш§Щ„ШЄЩ‡ЩЉШ¦Ш©"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Ш§Ш№Ш±Ш¶ ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„Щ…Ш№Ш§Щ„Ш¬"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "ШҐШ№ШЇШ§ШЇ Щ…ШЄЩ‚ШЇЩ…"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Щ‚Щ… ШЁШ§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ Ш§Щ„ШўЩ†"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -9942,7 +10063,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9951,7 +10072,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -9992,7 +10113,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10020,19 +10141,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Ш¬Щ…ЩЉШ№ Ш§Щ„Ш­Щ‚Щ€Щ‚ Щ…Ш­ЩЃЩ€ШёШ© (C) 2001 MandrakeSoft Щ…Щ† ШЇЩ€ШЁЩ€Щ† ШіЩЉШЁШ§ШіШЄЩЉШ§Щ† <dupont_s"
"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10065,7 +10186,7 @@ msgstr ""
"02111-1307,\n"
" USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10105,7 +10226,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10116,7 +10237,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10129,7 +10250,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10211,8 +10332,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "ШЈШЇЩ€Ш§ШЄ ШіШ·Ш± Ш§Щ„ШЈЩ€Ш§Щ…Ш±"
@@ -10287,28 +10408,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Ш§ШіШЄШ№Ш§ШЇШ©"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Щ…Ш§ ШЁШ№ШЇ Ш§ШІШ§Щ„Ш© Ш§Щ„ШЄШ«ШЁЩЉШЄ"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "ШіШЄЩѓЩ€Щ† Щ„Щ‚Ш·Ш§ШЄ Ш§Щ„ШґШ§ШґШ© Щ…Щ€Ш¬Щ€ШЇШ© ШЁШ№ШЇ Ш§Щ„ШЄШ«ШЁЩЉШЄ ЩЃЩЉ %s"
@@ -10409,10 +10530,6 @@ msgstr "Ш§Щ„Щ…Ш№Ш§Щ„Ш¬..."
msgid "Apply"
msgstr "ШЄШ·ШЁЩЉЩ‚"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "ЩЉШ±Ш¬Щ‰ Ш§Щ„ШҐЩ†ШЄШёШ§Ш±... Ш¬Ш§Ш±ЩЉ ШЄШ·ШЁЩЉЩ‚ Ш§Щ„ШҐШ№ШЇШ§ШЇШ§ШЄ"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Щ…ШЄЩ‘ШµЩ„ "
@@ -10532,7 +10649,7 @@ msgstr "Ш§ШіЩ… Ш§Щ„Щ€Ш­ШЇШ©"
msgid "Size"
msgstr "Ш­Ш¬Щ…"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "ШЇШ±ЩЉЩѓ Щ„Щ„Ш§Щ‚Ш±Ш§Шµ Ш§Щ„Щ…Ш±Щ†Ш©"
@@ -10597,12 +10714,12 @@ msgstr "Ш§Щ„Щ†Ш§ШЄШ¬"
msgid "Build the disk"
msgstr "Ш¬Щ‡ШІ Ш§Щ„Щ‚Ш±Шµ"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "ШЄШЈЩѓШЇ Щ…Щ† Щ€Ш¬Щ€ШЇ Ш§Щ„Щ€ШіЩЉШ· Щ„Щ„Щ€Ш­ШЇШ© %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10611,12 +10728,12 @@ msgstr ""
"Щ„Ш§ ЩЉЩ€Ш¬ШЇ Щ€ШіШ· ШЈЩ€ Ш±ШЁЩ…Ш§ ЩЉЩѓЩ€Щ† Ш§Щ„Щ€ШіШ· Щ…Ш­Щ…ЩЉ Щ…Щ† Ш§Щ„Щ‚Ш±Ш§ШЎШ© Щ„Щ„Ш¬Щ‡Ш§ШІ %s.\n"
"ЩЃШ¶Щ„Ш§Щ‹ Ш§ШЇШ®Щ„ Щ€ШіШ· ЩЃЩ‰ Ш§Щ„Щ€Ш­ШЇШ©."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "ШЄШ№Ш°Ш± ШЄЩ†ЩЃЩЉШ°: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11061,154 +11178,154 @@ msgstr ""
"\n"
"Ш§Ш¶ШєШ· Ш№Щ„Щ‰ ШЄЩ‡ЩЉШ¦Ш© Щ„ШЄШґШєЩЉЩ„ Щ…Ш№Ш§Щ„Ш¬ Ш§Щ„ШҐШ№ШЇШ§ШЇ."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Щ…Ш¬Щ…Щ€Ш№Ш© Ш§Щ„Ш№Щ…Щ„"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "ШҐЩ„ШєШ§ШЎ"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Ш§Щ†ШЄЩ‡Щ‰"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Ш§Ш¶Ш§ЩЃШ© Щ€Ш­ШЇШ©"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "ШЈШ¶ЩЃ Ш·Ш§ШЁШ№Ш© Ш¬ШЇЩЉШЇШ©"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "ШЄЩ… Ш§ШІШ§Щ„Ш© Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„ЩѓЩ„"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Ш§ШІЩ„ Ш§Щ„Щ…Ш§ШЇШ© Ш§Щ„Щ…Ш®ШЄШ§Ш±Ш©"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Щ€Ш§ЩЃЩ‚ Ш№Щ„Щ‰ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
msgstr ""
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Ш§Щ„ШЁЩ€Ш§ШЁШ©"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "ШҐШ®ШЄЩЉШ§Ш± Щ€Ш­ШЇШ§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Щ…Ш¬Щ…Щ€Ш№Ш© Ш§Щ„Ш№Щ…Щ„"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Щ„Щ… ЩЉШЄЩ… Ш§ЩЉШ¬Ш§ШЇ ШЁШ·Ш§Щ‚Ш© ШЄЩ„ЩЃШ§ШІ!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
#, fuzzy
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
@@ -11229,136 +11346,146 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "ШµЩ†Ш№ Щ‚Ш±Шµ Щ…Ш±Щ† Щ„ШЁШЇШЎ Ш§Щ„Щ†ШёШ§Щ…"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "ШЇЩ‚Ш© Ш§Щ„Ш№Ш±Ш¶"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "ШҐШ®ШЄШ± Щ…Щ„ЩЃ"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Proxies Ш§Ш№ШЇШ§ШЇ"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Ш®Ш±Щ€Ш¬"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "ШЄШ«ШЁЩЉШЄ Ш§Щ„Щ†ШёШ§Щ…"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„Ш®ШЇЩ…Ш§ШЄ"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "Щ€Ш­ШЇШ©"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "Щ€Ш­ШЇШ©"
+msgid "Save theme"
+msgstr "ШЄШ«ШЁЩЉШЄ Ш§Щ„Щ†ШёШ§Щ…"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "ШҐШ®ШЄШ± ШґШ§ШґШ©"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "ШҐШ®ШЄЩЉШ§Ш± Щ€Ш­ШЇШ§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr ""
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„ШЄШ­Щ‚Щ‚ Щ…Щ† Ш§Щ„ШЈШ¬Щ‡ШІШ© ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11502,6 +11629,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "Ш§Щ„Ш§ШіШЄШ№Щ…Ш§Щ„: keyboarddrake [--expert][Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "Ш§Щ„Ш§ШіШЄШ№Щ…Ш§Щ„: keyboarddrake [--expert][Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­]\n"
@@ -11530,11 +11664,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Щ„Щ… ШЈШЄЩ…ЩѓЩ† Щ…Щ† ШЁШЇШЎ Ш§Щ„ШЄШ±Щ‚ЩЉШ© Ш§Щ„Ш­ЩЉШ© !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "ШЄЩ… Ш№Щ…Щ„ Ш§Щ„ШЄШєЩЉЩЉШ±, Щ€ Щ„ЩѓЩ† Щ„ЩЉШЄЩ… ШЄЩЃШ№ЩЉЩ„Щ‡ ЩЉШ¬ШЁ Ш№Щ„ЩЉЩѓ Ш§Щ„Ш®Ш±Щ€Ш¬"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -11815,16 +11949,13 @@ msgstr ""
"ЩЉЩ…ЩѓЩ†Щѓ Ш§Щ„ШўЩ† Щ…ШіШ­ Ш§Щ„Щ…ШіШЄЩ†ШЇШ§ШЄ ШЁШ§ШіШЄШ®ШЇШ§Щ… ``XSane'' Щ…Щ† ЩЃШ±Ш№ Щ€ШіШ§Ш¦Ш· Щ…ШЄШ№ШЇШЇШ©/ШЁШ±Ш§Щ…Ш¬ Ш±ШіЩ€Щ…ЩЉШ© "
"ЩЃЩЉ Щ‚Ш§Ш¦Щ…Ш© Ш§Щ„ШЄШ·ШЁЩЉЩ‚Ш§ШЄ."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -11899,7 +12030,7 @@ msgstr "ШЄШ«ШЁЩЉШЄ ШЄШ­ШЇЩЉШ«Ш§ШЄ Ш§Щ„Щ†ШёШ§Щ…"
msgid "Exit install"
msgstr "Ш§Щ„Ш®Ш±Щ€Ш¬ Щ…Щ† Ш§Щ„ШЄШ«ШЁЩЉШЄ"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12146,6 +12277,18 @@ msgstr "Щ€ШіШ§Ш¦Ш· Щ…ШЄШ№ШЇШЇШ© - Щ†ШіШ® ШЈЩ‚Ш±Ш§Шµ"
msgid "Scientific Workstation"
msgstr "Щ…Ш­Ш·Ш© Ш№Щ…Щ„ Ш№Щ„Щ…ЩЉШ©"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Proxies Ш§Ш№ШЇШ§ШЇ"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Ш®Ш±Щ€Ш¬"
+
#~ msgid ""
#~ "tinyfirewall configurator\n"
#~ "\n"
@@ -12507,9 +12650,6 @@ msgstr "Щ…Ш­Ш·Ш© Ш№Щ…Щ„ Ш№Щ„Щ…ЩЉШ©"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "Ш¬Ш§Ш±ЩЉ Ш¶ШЁШ· Щ…ШіШЄЩ€Щ‰ Ш§Щ„ШЈЩ…Щ†"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ш§Ш®ШЄШ± ШЁШ·Ш§Щ‚Ш© ШґШ§ШґШ©"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 197fab395..57ae9d501 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
"Last-Translator: Vasif Д°smayД±loДџlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
@@ -91,24 +91,24 @@ msgstr "BГјtГјn baЕџlД±qlarД± ayrД± ayrД± quraЕџdД±r"
msgid "Use Xinerama extension"
msgstr "Xinerama ifadЙ™lЙ™rini iЕџlЙ™t"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "TЙ™kcЙ™ \"%s\" kartД±nД± qur (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "3D avadanlД±q sГјr'Й™tlЙ™ndirmЙ™si ilЙ™ XFree %s"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -120,17 +120,17 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir fikir olar."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sizin kartД±nД±zД±n XFree %s ilЙ™ 3D dЙ™stЙ™yi ola bilЙ™r."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "SINAQ MЖЏRHЖЏLЖЏSД°NDЖЏKД° 3D sГјr'Й™tlЙ™ndirmЙ™ dЙ™stЙ™kli XFree %s"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir seçki olar."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -153,12 +153,12 @@ msgstr ""
"Sizin kartД±nД±zД±n XFree %s ilЙ™ 3D dЙ™stЙ™yi ola bilЙ™r.\n"
"DД°QQЖЏT! BU SINAQ MЖЏRHЖЏLЖЏSINDЖЏDIR VЖЏ KOMPГњTERД°NД°Z DONDURA BILЖЏR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "XГјsusi"
@@ -179,32 +179,32 @@ msgstr "Rezolyusiya"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Seçənəklər"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Oldu"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Г‡Д±x"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -297,25 +297,25 @@ msgstr "Rezolyusiya və rəng dərinliyini seçin"
msgid "Graphics card: %s"
msgstr "Ekran kartД±: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "LЙ™Дџv et"
@@ -392,11 +392,11 @@ msgstr "XFree86 verici: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sГјrГјcГј: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ilə Açılış"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -405,7 +405,7 @@ msgstr ""
"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
"Açılışda X Window ilə başlamaq istəyirsiniz?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -417,7 +417,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "ISDN bağlantınızın növü nədir?"
@@ -490,7 +490,7 @@ msgstr "BЙ™sit"
msgid "compact"
msgstr "bЙ™sit"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Ekran modu"
@@ -498,17 +498,17 @@ msgstr "Ekran modu"
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Parol (tЙ™krar)"
@@ -543,14 +543,14 @@ msgid ""
msgstr ""
"``Əmr sətiri seçənəklərini məhdudlaşdır`` seçənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Parollar uyДџun gЙ™lmir"
@@ -587,7 +587,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -595,156 +595,156 @@ msgstr ""
"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ЖЏlavЙ™ et"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "QurtardД±"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "TЙ™kmillЙ™Еџdir"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Ne cГјr bir giriЕџ istЙ™yirsiniz?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "DigЙ™r sistemlЙ™r (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "DigЙ™r sistemlЙ™r (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "DigЙ™r sistemlЙ™r (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "ЖЏks"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Kök"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Sonuna Й™lavЙ™ et"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "CЙ™dvЙ™l"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "E'tibarsД±z"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "ЖЏsas"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd böyüklüyü"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVД°deo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "GiriЕџi sil"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "BoЕџ etiket qЙ™bul edilЙ™ bilmЙ™z"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Bir swap sahЙ™sinЙ™ ehtiyacД±nД±z var"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Bu etiket istifadЙ™ edilmЙ™z"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara ГјzГј tapД±ldД±"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "BaЕџqa var?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara üzü var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "BЙ™li"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "AvadanlД±q mЙ™'lumatД±na bax"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"ParametrlЙ™r``ad=qiymЙ™t ad2=qiymЙ™t2...'' ЕџЙ™klindЙ™ olmalД±dД±r.\n"
"MЙ™sЙ™lЙ™n ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modul seçənəkləri:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "HansД± %s sГјrГјcГјsГј sД±nansД±n?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -782,15 +782,15 @@ msgstr ""
"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
"kompüterinizə heç bir şey olmaz."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Seçənəkləri göstər"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -799,64 +799,64 @@ msgstr ""
"%s modulunun yГјklЙ™nmЙ™si iflas etdi.\n"
"YenidЙ™n baЕџqa bir parametr ilЙ™ sД±namaq istЙ™yirsiniz?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s artД±q Й™lavЙ™ edilmiЕџdir)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "XahiЕџ edirik bir istifadЙ™Г§i adД± alД±n"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilЙ™r"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Bu istifadЙ™Г§i adД± artД±q vardД±r"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Bu istifadЙ™Г§i adД± artД±q vardД±r"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Bir istifadЙ™Г§i girin\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Д°stifadЙ™Г§ini qЙ™bul et"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "HЙ™qiqi adД±"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "QabД±q"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Avtomatik GiriЕџ"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -899,59 +899,59 @@ msgstr ""
"KompГјterinizi avtomatik olaraq bir istifadЙ™Г§i ilЙ™ baЕџlada bilЙ™rЙ™m.\n"
"Д°stЙ™mirsiniz isЙ™ rЙ™dd edin."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "HamД±sД±"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Д°stifadЙ™Г§i Й™lavЙ™ et"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS baЕџlayД±r"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bu paket yenilЙ™nmЙ™lidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -960,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "KrakerlЙ™rЙ™ xoЕџgЙ™lmiЕџsiniz"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "ZЙ™if"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "YГјksЙ™k"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "YГјksЙ™k"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "ЕћГјbhЙ™ci"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1006,7 +1006,7 @@ msgstr ""
"iЕџlЙ™dilЙ™cЙ™k, ancaq xЙ™talara qarЕџД± da hЙ™ssaiyyЙ™ti dЙ™ artacaqdД±r. Д°nternetЙ™ \n"
"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1014,7 +1014,7 @@ msgstr ""
"Parollar fЙ™allaЕџdД±rД±ldД±, yenЙ™ dЙ™ bir ЕџЙ™bЙ™kЙ™ ГјstГјndЙ™ istifadЙ™ edilmЙ™mЙ™si "
"tövsiyə edilir."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1023,13 +1023,13 @@ msgstr ""
"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
"tЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sidir."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1044,7 +1044,7 @@ msgstr ""
"TЙ™hlГјkЙ™sizlik, birdЙ™n Г§ox alД±cД±nД±n baДџlanmasД±na icazЙ™ verЙ™cЙ™k ЕџЙ™kildЙ™ "
"artД±rД±lmД±ЕџdД±r. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1054,36 +1054,36 @@ msgstr ""
"tamamilЙ™ qapalД±dД±r.\n"
"TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™si indi Й™n ГјstdЙ™dir."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Seçənəklər"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Təhlükəsizlik səviyyəsini seçin"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1096,7 +1096,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1121,7 +1121,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gЙ™lmissiniz!"
@@ -1135,7 +1135,7 @@ msgstr "Emeliyyat sistemi secici GRUB'a xos gЙ™lmissiniz!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c ve %c duymeleri ile isД±qlandД±rД±lmД±s girisleri sece bilersiniz"
@@ -1150,7 +1150,7 @@ msgstr "%c ve %c duymeleri ile isД±qlandД±rД±lmД±s girisleri sece bilersiniz"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1164,7 +1164,7 @@ msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmЙ™k ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1179,33 +1179,33 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Masa ГњstГј"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "BaЕџlama Menyusu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Sistem yГјklЙ™yicisini haraya qurmaq istЙ™yirsiniz?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "hələlik yardım sistemi mövcud deyildir.\n"
@@ -1257,106 +1257,106 @@ msgstr "Lilo/grub modu"
msgid "Yaboot mode"
msgstr "Yaboot modu"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Sistemi qur"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Yeni bölmə yarat"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "XЙ™ta"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVД°deo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Quruluş sinifini seçin"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1365,22 +1365,22 @@ msgstr ""
"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
"Quraşdırma sehirbazını başlatmaq üçün tıqlayın."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Qur"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Paket seçkilərini saxla"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1389,45 +1389,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistem modu"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Xeyr, Avtomatik giriЕџ istЙ™mirЙ™m"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Oldu"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab oxunmaq üçün açıla bilmir: %s"
@@ -1533,53 +1533,61 @@ msgstr "serial"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "yeni"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "AyД±r"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "BaДџla"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
@@ -1669,7 +1677,7 @@ msgstr "BoЕџ"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "DigЙ™r"
@@ -1820,7 +1828,7 @@ msgstr ""
"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
"Davam etmЙ™k istЙ™yirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "XЙ™bЙ™rdarlД±q"
@@ -2391,7 +2399,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Д°stifadЙ™Г§i adД±"
@@ -2406,23 +2414,23 @@ msgstr "NIS sahЙ™si"
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrД±lД±rkЙ™n xЙ™ta oldu: %s"
@@ -2512,46 +2520,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "SГјrГјcГј"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_YardД±m"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2678,7 +2750,8 @@ msgid "/_Quit"
msgstr "Г‡Д±x"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Kömək"
@@ -2698,76 +2771,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Kömək/_Haqqında..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Avtomatik yoxla"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Sabit disk seçkisi"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "AvadanlД±q mЙ™'lumatД±na bax"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mə'lumatı göstər"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Siçan qurğuları"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "%s qapД±sД±nda tapД±ldД±"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d saniyЙ™ sonra Г§Д±xД±lacaq"
@@ -4231,7 +4305,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4255,7 +4329,7 @@ msgstr ""
"\n"
"Bu vericilЙ™ri qurmaq istЙ™yirsiniz?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4264,20 +4338,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NД°S domeyni olmadan translasiya iЕџlЙ™dilЙ™ bilmЙ™z"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "%s sГјrГјcГјsГјnЙ™ FAT ЕџЙ™killЙ™ndirilmiЕџ bir disket taxД±n"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT ЕџЙ™klindЙ™ deyildir"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4285,12 +4359,12 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
"defcfg=floppy''ilЙ™ baЕџladД±n."
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "%s faylД± oxunurkan xЙ™ta oldu"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4536,7 +4610,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "%s SisteminЙ™ XoЕџgЙ™lmiЕџsiniz"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Disket sГјrГјcГј yoxdur"
@@ -4568,11 +4642,11 @@ msgstr "Qurulum Sinifi"
msgid "Please choose one of the following classes of installation:"
msgstr "Xahiş edirik aşağıdakı qurulum siniflərindən birisini seçiniz:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
@@ -4648,7 +4722,7 @@ msgstr "Avtomatik seçili paketləri göstər"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Qurulum"
@@ -4671,7 +4745,7 @@ msgstr "Qurulumdan Г§Д±x"
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Qurulur"
@@ -4698,17 +4772,17 @@ msgid "Installing package %s"
msgstr "%s paketi qurulur"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "QЙ™bul Et"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "RЙ™dd Et"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4723,16 +4797,16 @@ msgstr ""
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq üçün İMTİNA ET'ə basın."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "YenЙ™ dЙ™ davam edЙ™k?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "PaketlЙ™ri istЙ™rkЙ™n bir xЙ™ta oldu:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "PaketlЙ™r qurulurkЙ™n bir xЙ™ta oldu:"
@@ -4857,7 +4931,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4975,7 +5049,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5052,7 +5126,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatura"
@@ -5265,29 +5339,29 @@ msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
msgid "Selected size is larger than available space"
msgstr "Seçili böyüklük var olandan daha böyükdür"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5298,16 +5372,16 @@ msgstr ""
"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
"basД±n."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlД± Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Qurulum hazД±rlanД±r"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5316,21 +5390,21 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Qurulum sonrasД± qurДџular"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "%s sГјrГјcГјsГјnЙ™ boЕџ bir disket yerlЙ™Еџdirin"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5400,7 +5474,7 @@ msgstr ""
"USA\n"
"ГјnvanД±na yazД±nД±z."
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5412,164 +5486,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "ЖЏks ГјnvanД±na baДџlantД± qurulur"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "ЖЏks ГјnvanД±na baДџlantД± qurulur"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Sisteminiz hansД± mЙ™qsЙ™dlЙ™ istifadЙ™ edilЙ™cЙ™k?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Г‡ap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "BaЕџqa var?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "MГјndЙ™ricat"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Г‡ap Edici"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kartД±"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "SЙ™s kartД±"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kartД±"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "NIS istifadЙ™ et"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS sahЙ™si"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Yerli Г‡ap Edici"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Bu parol Г§ox sadЙ™dir (en az %d xarakter boyunda olmalД±dД±r)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "TanД±tma"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "TanД±tma"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS sahЙ™si"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5585,21 +5659,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "TanД±tma"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "SahЙ™(domain) adД±"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5630,19 +5704,19 @@ msgstr ""
"yerlЙ™Еџdirin\n"
"vЙ™ \"OLDU\" basД±n."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Д°lk disket sГјrГјcГј"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Д°kinci disket sГјrГјcГј"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "NЙ™zЙ™rЙ™ Alma"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5672,7 +5746,7 @@ msgstr ""
"vЙ™ \"OLDU\" basД±n.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5681,28 +5755,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "BaДџД±ЕџlayД±n, disket sГјrГјcГј yoxdur"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Açılış disketi yaratmaq üçün istifadə ediləcək disket sürücüyü seçin"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5710,11 +5784,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5722,16 +5796,16 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yГјklЙ™yicini qur"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5748,17 +5822,17 @@ msgstr ""
" Sonra da bunlarД± yazД±n: shut-down\n"
"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sГјrГјcГјsГјnЙ™ boЕџ bir disket yerlЙ™Еџdirin"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5768,7 +5842,7 @@ msgstr ""
"\n"
"HЙ™qiqЙ™tЙ™n dЙ™ Г§Д±xmaq istЙ™yirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5794,15 +5868,15 @@ msgstr ""
"Sisteminizin qurДџularД± haqqД±nda daha geniЕџ bilgiyi Linuks Mandrake \n"
"Д°stifadЙ™Г§i KitabcД±ДџД±nda tapa bilЙ™rsiniz."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5816,15 +5890,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmЙ™k istЙ™yЙ™ bilЙ™rsiniz axД±.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "AvtomatlaЕџdД±rД±lmД±Еџ"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "TЙ™krarla"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5861,14 +5935,14 @@ msgstr "ЖЏtraflД±"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- ЖЏvvЙ™lki"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "SonrakД± ->"
@@ -6323,7 +6397,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "DairЙ™vi baДџlama %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "MЙ™ntiqi ciltlЙ™ri birinci olaraq sil\n"
@@ -6461,15 +6535,15 @@ msgstr "heç biri"
msgid "No mouse"
msgstr "Siçansızs"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "TЖЏKЖЏRД° OYNADIN!"
@@ -6505,11 +6579,11 @@ msgstr "AДџacД± Qapat"
msgid "Toggle between flat and group sorted"
msgstr "Otaq vЙ™ grup sД±ralamasД± arasД±nda gЙ™z"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Д°nternetЙ™ baДџlan"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6519,23 +6593,19 @@ msgstr ""
"BЙ™zi baДџlantД±lar pptp istifadЙ™ edir, Г§ox azД± isЙ™ dhcp iЕџlЙ™dir.\n"
"Bilmirsiniz isə 'pppop istifadə et'i seçin"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "dhcp istifadЙ™ et"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "pppoe istifadЙ™ et"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "pptpe istifadЙ™ et"
@@ -6637,7 +6707,7 @@ msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
msgid "no network card found"
msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "ЕћЙ™bЙ™kЙ™ QurДџularД±"
@@ -6652,15 +6722,15 @@ msgstr ""
"MЙ™sЙ™lЙ™n``kompГјteradД±.sahЙ™adД±.com''.\n"
"Əgə şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Ev sahibi adД±"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД± SehirbazД±"
@@ -6700,8 +6770,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Oddan divar (Firewall) quruluЕџu tapД±ldД±!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN quraЕџdД±rД±lmasД±"
@@ -6741,23 +6811,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "HansД± protokolu istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Hansı növ kartınız var?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "BilmirЙ™m"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6770,19 +6845,19 @@ msgstr ""
"\n"
"PCMCIA kartД±nД±z var isЙ™ kartД±nД±zД±n irq vЙ™ ya io'sunu bilmЙ™lisiniz.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "DayandД±r"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Davam et"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "HansД±sД± sizin ISDN kartД±nД±zdД±r?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6790,7 +6865,7 @@ msgstr ""
"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
"kartlardan birini seçin."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Heç bir ISDN PCI kart tapılmaı. Sonrakı ekrandakılardan seçin."
@@ -6842,7 +6917,7 @@ msgstr "Birinci DNS Vericisi (arzuya görə)"
msgid "Second DNS Server (optional)"
msgstr "İkinci DNS Vericisi (arzuya görə)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6851,7 +6926,7 @@ msgstr ""
"BaДџlantД±nД±zД± kЙ™sЙ™ bilЙ™rsiniz. Ya da baДџlantД±nД± yenidЙ™n dЙ™ quraЕџdД±ra "
"bilЙ™rsiniz."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6859,11 +6934,11 @@ msgstr ""
"\n"
"BaДџlantД±nД±zД± yenidЙ™n quraЕџdД±ra bilЙ™rsiniz."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "ArtД±q Д°nternetЙ™ baДџlД±sД±nД±z."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6871,28 +6946,28 @@ msgstr ""
"\n"
"Д°stЙ™sЙ™niz Д°nternetЙ™ baДџlana bilЙ™rsiniz ya da yeniden quraЕџdД±ra bilЙ™rsiniz."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "HЙ™lЙ™ Д°nternetЙ™ baДџlД± deyilsiniz."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "BaДџlan"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "BaДџlantД±nД± kЙ™s"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "ЕћЙ™bЙ™kЙ™ni qur"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Д°nternet baДџlantД±sД± & quraЕџdД±rД±lmasД±"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
@@ -6900,7 +6975,7 @@ msgstr ""
"BaДџlantД±nД±zД± kЙ™sЙ™ bilЙ™rsiniz. Ya da baДџlantД±nД± yenidЙ™n dЙ™ quraЕџdД±ra "
"bilЙ™rsiniz."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6915,12 +6990,12 @@ msgstr ""
"BaДџlantД±nД±zД± kЙ™sЙ™ bilЙ™rsiniz. Ya da baДџlantД±nД± yenidЙ™n dЙ™ quraЕџdД±ra "
"bilЙ™rsiniz."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6931,7 +7006,7 @@ msgstr ""
"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
"et'Й™ basД±n.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6943,99 +7018,99 @@ msgstr ""
"Д°nternet/ЕћЙ™bЙ™kЙ™ qurДџularД±nД±zД± edЙ™cЙ™yik.\n"
"Avtomatik tЙ™sbit istЙ™mirsiniz isЙ™ iЕџarЙ™ti qaldД±rД±n.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Qurulacaq profili seçin"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Usta Modu"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "AvadanlД±qlar tanД±nД±r..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normal modem tЙ™sbiti"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "%s qapД±sД±nda tapД±ldД±"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN BaДџlantД±sД±"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s tapД±ldД±"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "%s ara ГјzГјndЙ™ tapД±ldД±"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabel baДџlantД±sД±"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Kabel baДџlantД±sД±"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "eternet kart tapД±ldД±"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7046,7 +7121,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7056,7 +7131,7 @@ msgstr ""
"\n"
"QurДџular indi sisteminizЙ™ Й™lavЙ™ edilЙ™cЙ™k.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7064,14 +7139,14 @@ msgstr ""
"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
"verici adД± xЙ™sarЙ™tlЙ™ri meydana gЙ™lЙ™ bilЙ™r."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7083,50 +7158,50 @@ msgstr ""
"OLDU ya basД±n.\n"
"AЕџaДџД±dakД± giriЕџlЙ™ri dГјzЙ™ltmЙ™niz Г¶zГјnГј Й™vvЙ™lki qurДџularД±n ГјstГјnЙ™ yazacaqdД±r."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr "Xahiş edirik bu kompüter üçün IP qurğularını girin"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "%s ЕџЙ™bЙ™kЙ™ avadanlД±ДџД± qurulur"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (sГјrГјcГј %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ГјnvanД±"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "AvtomatlaЕџdД±rД±lmД±Еџ IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Açılışda başladılır"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7137,42 +7212,53 @@ msgstr ""
"MЙ™sЙ™lЙ™n``kompГјteradД±.sahЙ™adД±.com''.\n"
"Əgər şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "VЙ™kil vericilЙ™r quraЕџdД±rД±lmasД±"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP vЙ™kil verici"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP vЙ™kil verici"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "VЙ™kil verici ftp://... olmalД±dД±r."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8571,7 +8657,7 @@ msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9082,11 +9168,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9136,6 +9217,43 @@ msgstr "mkraid iflas etdi (raidtools Й™ksik ola bilЙ™r mi?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (ЖЏsas)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA sЙ™s sistemini (Advanced Linux Sound Architecture) baЕџlat"
@@ -9447,7 +9565,7 @@ msgstr "Д°nternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -9543,7 +9661,7 @@ msgstr "Д°nternetЙ™ baДџlan"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9590,7 +9708,7 @@ msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9615,7 +9733,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9631,7 +9749,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9646,7 +9764,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9695,8 +9813,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9733,11 +9851,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "%s paketi qurulur"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "LГјtfen Г§Д±xД±n vЙ™ Ctrl-Alt-BackSpace dГјymЙ™lЙ™rinЙ™ basД±n"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "\"%s\"a(Й™) tЙ™krar girin vЙ™ dЙ™yiЕџikliklЙ™ri fЙ™allaЕџdД±rД±n"
@@ -9785,17 +9903,6 @@ msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
msgid "Add/Del Clients"
msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_YardД±m"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9848,53 +9955,68 @@ msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "QuraЕџdД±rД±lД±r..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "yenidЙ™n quraЕџdД±r"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Disket sГјrГјcГј yoxdur"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10018,13 +10140,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "QapД±larД± sД±na"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10033,41 +10155,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "%s açıla bilmir: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10078,68 +10200,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10147,923 +10269,925 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "%s faylД± oxunurkan xЙ™ta oldu"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Fayl seç"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Növ"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Г‡Й™rx"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Г‡Й™rx"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurДџularД±"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "DisketdЙ™n geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "DigЙ™r"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "DisketdЙ™n geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Ev sahibi adД±"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Parol"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Ev sahibi adД±:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "XГјsusi"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- ЖЏvvЙ™lki"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "AЕџaДџД±dakД± paketlЙ™r qurulacaqdД±r"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurДџularД±"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11095,7 +11219,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11104,7 +11228,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11145,7 +11269,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11173,17 +11297,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11200,7 +11324,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11240,7 +11364,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11251,7 +11375,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11264,7 +11388,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11346,8 +11470,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsol VasitЙ™lЙ™ri"
@@ -11423,28 +11547,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "QapД±"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Qurulumdan Г§Д±x"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
@@ -11545,10 +11669,6 @@ msgstr "Sehirbaz..."
msgid "Apply"
msgstr "ЖЏlavЙ™ Et"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "BaДџlandД±"
@@ -11668,7 +11788,7 @@ msgstr "Modul adД±"
msgid "Size"
msgstr "Böyüklük"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11733,12 +11853,12 @@ msgstr "NЙ™ticЙ™"
msgid "Build the disk"
msgstr "Diski yarat"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "%s avadanlД±ДџД±nda medya olduДџundan Й™min olun"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11747,12 +11867,12 @@ msgstr ""
"%s avadanlД±ДџД±nda medya yoxdur.\n"
"XahiЕџ edirik. birini taxД±n."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork edilЙ™ bilmir: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12236,157 +12356,157 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Д°Еџ qrupu"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "bölmə %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Sil"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "QurtardД±"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Modul Й™lavЙ™ et"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Г‡ap Edicisiz"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Növbəni sil"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Д°stifadЙ™Г§ini qЙ™bul et"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "BuraxД±lД±Еџ: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "QapД±"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Paket seçkilərini saxla"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Д°Еџ qrupu"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "BaДџlД± deyil"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12398,137 +12518,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "açılış disketi yaradılması"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezolyusiya"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Monitorunuzu seçin"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "PaylaЕџdД±rma adД±"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Qurulum sonrasД± qurДџular"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Г‡Д±x"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Sistemi qur"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "XidmЙ™tlЙ™ri qur"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "avadanlД±q"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "avadanlД±q"
+msgid "Save theme"
+msgstr "Sistemi qur"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Monitorunuzu seçin"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Г‡ap Edici BaДџlantД±sД±"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Г‡ap Edici avadanlД±ДџД± URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "AvadanlД±qlar tanД±nД±r..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12669,6 +12799,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "istifadЙ™ qaydasД±: keyboarddrake [--expert] [klavatura]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "istifadЙ™ qaydasД±: keyboarddrake [--expert] [klavatura]\n"
@@ -12697,11 +12834,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "TЙ™kmillЙ™ЕџdirmЙ™ iЕџi baЕџlaya bilmir !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12982,16 +13119,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13067,7 +13201,7 @@ msgstr "Sistemi qur"
msgid "Exit install"
msgstr "Qurulumdan Г§Д±x"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13313,6 +13447,21 @@ msgstr "Multimedya - CD YandД±rma"
msgid "Scientific Workstation"
msgstr "Elmi iЕџ stansiyasД±"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Qurulum sonrasД± qurДџular"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "VЙ™kil verici ftp://... olmalД±dД±r."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Г‡Д±x"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (köhnə BIOSlarda işləməz)"
@@ -13565,9 +13714,6 @@ msgstr "Elmi iЕџ stansiyasД±"
#~ msgid "Test again"
#~ msgstr "YenidЙ™n sД±na"
-#~ msgid "Setting security level"
-#~ msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ekran kartınızı seçin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 3c41b2038..8a9393b7f 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -88,24 +88,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Канфiгураваць маю карту"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "Сервер XFree86 %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s з падтрымкай 3D-паскарэння"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -114,19 +114,19 @@ msgstr ""
"Падтрымка 3D-паскарэння ў Вашай відэакарце выканана толькі ў XFree %s.\n"
"XFree %s можа выкарыстоўваць толькі 2D-паскарэнне для гэтай відэакарты."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
"s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s з эксперыментальнай падтрымкай 3D-паскарэння"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ. Ваша вiдэакарта падтрымлiваецца XFree %s, якi\n"
"лепей падтрымлiвае карты з 2D-паскарэннем."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,12 +150,12 @@ msgstr ""
"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Па выбару"
@@ -176,32 +176,32 @@ msgstr "Памеры экрану"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Опцыi"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ок"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Выхад"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -299,25 +299,25 @@ msgstr "Выбар памераў экрану i глыбiнi колеру"
msgid "Graphics card: %s"
msgstr "Вiдэакарта: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Адмена"
@@ -394,11 +394,11 @@ msgstr "Сервер XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Сервер XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Запуск X пры старце сiстэмы"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -407,7 +407,7 @@ msgstr ""
"Можна настроiць сiстэму для аўтаматычнага запуску X пасля старту сiстэмы.\n"
"Жадаеце, каб X стартаваў пры рэстарце?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -419,7 +419,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Якi тып вашага ISDN злучэння?"
@@ -493,7 +493,7 @@ msgstr "Кампактна"
msgid "compact"
msgstr "кампактна"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Вiдэа-рэжым"
@@ -501,17 +501,17 @@ msgstr "Вiдэа-рэжым"
msgid "Delay before booting default image"
msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Пароль"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Паўтарыце пароль"
@@ -546,14 +546,14 @@ msgid ""
msgstr ""
"Опцыя ``Абмежаванне опцыяў каманднага радку'' не выкарыстоўваецца без пароля"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Паролi не супадаюць"
@@ -591,7 +591,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -599,158 +599,158 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Дадаць"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Зроблена"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "Змянiць RAID"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Якi тып пункта жадаеце дадаць?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Iншая АС (SunOS,...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Iншая АС (MacOS,...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Iншая АС (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Вобраз"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Далучыць"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Чытанне-запiс"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Таблiца"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Ненадзейна"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Метка"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Па дамаўленню"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Выдалiць запiс"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Вы павiнны мець раздзел swap"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Знойдзены %s %s iнтэрфейсы"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Цi ёсць у вас iншы?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Цi ёсць у вас %s iнтэрфейс?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Не"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Так"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Гл. апiсанне абсталявання"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Усталяванне драйверу для %s карты %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(модуль %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -761,17 +761,17 @@ msgstr ""
"Опцыi - у фармаце ``iмя=значэнне iмя2=значэнне2 ...''.\n"
"Напрыклад, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Опцыi модулю:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Якi драйвер %s паспрабаваць?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -788,15 +788,15 @@ msgstr ""
"ў пошуках неабходнай iнфармацыi? Магчыма, тэсцiраванне прывядзе\n"
"да спынення камп'ютэру, але яно нiчога не сапсуе."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Аўтапошук"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Пазначце параметры"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -805,64 +805,64 @@ msgstr ""
"Загрузка модулю %s не прайшла.\n"
"Жадаеце паспрабаваць з iншымi параметрамi?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ужо дададзена %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Гэты пароль занадта просты"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Калi ласка, увядзiце iмя карыстальнiку"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Iмя карыстальнiку павiнна змяшчаць лiтары толькi на нiжнiм рэгiстры, \n"
"лiчбы, `-' i `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Гэта iмя карыстальнiку ўжо дададзена"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Гэта iмя карыстальнiку ўжо дададзена"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Дадаць карыстальнiка"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -871,32 +871,32 @@ msgstr ""
"Увядзiце iмя карыстальнiку\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Прыняць карыстальнiка"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Уласнае iмя"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Iмя карыстальнiку:"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Абалонка:"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Пiктаграма"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Аўтаматычны ўваход у сiстэму"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -905,57 +905,57 @@ msgstr ""
"Можна настроiць сiстэму для аўтаматычнага ўваходу ў сiстэму для\n"
"аднаго карыстальнiка. Калi Вы не жадаеце гэтага, нацiснiце \"Адмена\"."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Абярыце асноўнага карыстальнiка:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Абярыце мэнэджар вокнаў:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Усё"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Дадаць карыстальнiка"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "Чакаецца"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -964,42 +964,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Сардэчна запрашаем у Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Зусім слабы"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Стандартны"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Высокi"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Высокi"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Паранаiдальны"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1011,7 +1011,7 @@ msgstr ""
"на машынах, якiя далучаны да сеткi цi да Internet. Уваход не абаронены "
"паролем."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1019,7 +1019,7 @@ msgstr ""
"Пароль зараз уключаны, але выкарыстанне камп'ютэру ў якасцi сеткавага\n"
"таксама не рэкамендавана."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1029,13 +1029,13 @@ msgstr ""
"якi далучаны да Internet у якасцi клiенту. Даданыя новыя праверкi\n"
"бяспекi."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1049,7 +1049,7 @@ msgstr ""
"серверу. Узровень бяспекi дастаткова высокi для работы\n"
"серверу, якi дапускае злучэннi са шматлiкiмi клiентамi."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1058,36 +1058,36 @@ msgstr ""
"Прымаюцца ўласцiвасцi 4 узроўня, але зараз сiстэма поўнасцю зачынена.\n"
"Параметры бяспекi ўстаноўлены на максiмум."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Опцыi"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Узровень бяспекi"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Настройкi ўзроўня бяспекi"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Абярыце дадатковыя настройкi для сервера"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1095,7 +1095,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1107,58 +1107,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "Не хапае дыскавай прасторы ў /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Працоўны стол"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Стартавае меню"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1216,130 +1216,130 @@ msgstr "Рэжым злучэння"
msgid "Yaboot mode"
msgstr "Загрузачная прылада"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Усталяванне сiстэмы"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Стварэнне новага раздзелу"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Памылка"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "Сервер XFree86 %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "гальштук"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Клас усталявання"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Сумеснае Iнтэрнэт-злучэнне"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Настройка X Window"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Асабiсты выбар пакетаў"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
#, fuzzy
msgid "Themes"
msgstr "Дрэва"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1348,44 +1348,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1489,53 +1489,61 @@ msgstr "паслядоўная"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Новы"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Разманцiраваць"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Манцiраванне"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
#, fuzzy
msgid "Server"
msgstr "сервер"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Кропка манцiравання"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "сервер"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Пункт манцiравання:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Опцыi: %s"
@@ -1624,7 +1632,7 @@ msgstr "Пуста"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Іншыя"
@@ -1776,7 +1784,7 @@ msgstr ""
"Таблiца размяшчэння рэзервовага дыску мае iншы памер\n"
"Працягваць далей?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Увага!"
@@ -2335,7 +2343,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Iмя карыстальнiку:"
@@ -2350,23 +2358,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "DNS сервер"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s памылка фарматавання %s"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Не ведаю як адфарматаваць %s з тыпам %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "памылка разманцiравання %s: %s"
@@ -2458,46 +2466,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Памылка адкрыцця %s для запiсу: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Настройка"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "сервер"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Праверка параметраў настройкi"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Калi ласка, пачакайце"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2624,7 +2696,8 @@ msgid "/_Quit"
msgstr "Выхад"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr ""
@@ -2643,76 +2716,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "Адмянiць"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Аўтапошук"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Вызначэнне жорсткага дыску"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Гл. апiсанне абсталявання"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Iнфармацыя"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Настройка мышы"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Дубляванне пункту манцiравання %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Калi ласка, пачакайце"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d секундаў"
@@ -3972,7 +4046,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3987,7 +4061,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3996,31 +4070,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Немагчыма выкарыстоўваць broadcast без дамена NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Памылка чытання файлу %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4268,7 +4342,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Дыскавод недаступны"
@@ -4299,11 +4373,11 @@ msgstr "Клас Усталявання"
msgid "Please choose one of the following classes of installation:"
msgstr "Калi ласка, абярыце адзiн з класаў усталявання:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Выбар групы пакетаў"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Асабiсты выбар пакетаў"
@@ -4380,7 +4454,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Усталёўка"
@@ -4403,7 +4477,7 @@ msgstr "Выдалiць з сiстэмы"
msgid "Choose the packages you want to install"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Усталёўваем"
@@ -4431,17 +4505,17 @@ msgid "Installing package %s"
msgstr "Усталяванне пакету %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Прыняць"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Адказаць"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4458,16 +4532,16 @@ msgstr ""
"Cd."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Усё роўна працягваць?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
@@ -4564,7 +4638,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4642,7 +4716,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Клавiятура"
@@ -4855,31 +4929,31 @@ msgstr "Устаўце дыскету ў дыскавод %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Выбар пакетаў для усталявання"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Чакайце"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4889,16 +4963,16 @@ msgstr ""
"Калi вы не маеце анi воднага з гэтых CD дыскаў, нацiснiце Адмянiць.\n"
"Калi некаторых з CD дыскаў не маеце, адмянiце iх выдзяленне i нацiснiце Ок."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom пазначаны \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Падрыхтоўка ўсталяваньня"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4907,21 +4981,21 @@ msgstr ""
"Усталяванне пакету %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Настройка пасля ўсталявання"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4999,7 +5073,7 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5011,169 +5085,169 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Выбар люстра для атрымання пакетаў"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Якi ваш часавы пояс?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ваш сiстэмны гадзiннiк усталяваны на GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS сервер:"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Аддалены сервер CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
#, fuzzy
msgid "No printer"
msgstr "Iмя друкаркi"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Цi ёсць у вас iншы?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
#, fuzzy
msgid "Mouse"
msgstr "Порт мышы"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Прынтэр"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "ISDN card"
msgstr "Унутраная ISDN карта"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
#, fuzzy
msgid "Sound card"
msgstr "Стандартны"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Выкарыстоўваць NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Навуковыя прыкладанні"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Лакальны прынтэр"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Пароль для root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Няма паролю"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Аўтэнтыфiкацыя"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Аўтэнтыфiкацыя"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "сервер"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "Аўтэнтыфiкацыя NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS сервер:"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5189,22 +5263,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Аўтэнтыфiкацыя"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Iмя дамену"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Domain Admin Password"
msgstr "Падцвердзiць пароль"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5231,19 +5305,19 @@ msgstr ""
"Калi жадаеце стварыць загрузачны дыск зараз, устаўце дыскету ў першы\n"
"дыскавод i нацiснiце \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Першы дыскавод"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Другi дыскавод"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Прапусцiць"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5269,7 +5343,7 @@ msgstr ""
"Жадаеце стварыць загрузачны дыск зараз?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5278,28 +5352,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Выбачайце, але дыскавод недаступны"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Абярыце дыскавод, у якiм будзе стварацца загрузачная дыскета"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Стварэнне загрузачнай дыскеты"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Падрыхтоўка загрузчыка"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5307,11 +5381,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Вы жадаеце выкарыстоўваць aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5319,16 +5393,16 @@ msgstr ""
"Памылка ўсталявання аboot, \n"
"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Усталяванне загрузчыку"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнiкла наступная памылка:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5339,17 +5413,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Стварэнне дыскеты для ўсталявання"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5358,7 +5432,7 @@ msgstr ""
"Некаторыя крокi не завершаны.\n"
"Вы сапраўды жадаеце выйсцi зараз?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5390,16 +5464,16 @@ msgstr ""
"Iнфармацыя па настройке вашай сiстэмы ёсть ў пасля-ўсталёвачнай\n"
"главе вашага Дапаможнiка Карыстальнiку з Афiцыйнага Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Стварэнне дыскеты для ўсталявання"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5408,16 +5482,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Аўтаматычны"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
#, fuzzy
msgid "Replay"
msgstr "Перазагрузiць"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Асабiсты выбар пакетаў"
@@ -5455,14 +5529,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Тэкст"
@@ -5919,7 +5993,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Манцiраванне дыску %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -6060,16 +6134,16 @@ msgstr "няма"
msgid "No mouse"
msgstr "Няма мышы"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
#, fuzzy
msgid "To activate the mouse,"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "Рушце колам мышы!"
@@ -6106,34 +6180,30 @@ msgstr "Згарнуць дрэва"
msgid "Toggle between flat and group sorted"
msgstr "Пераключэнне памiж упарадкаваннем па групе i асобках"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Далучэнне да Iнтэрнэту"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "выкарыстоўваць pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
#, fuzzy
msgid "use pptp"
msgstr "выкарыстоўваць pppoe"
@@ -6233,7 +6303,7 @@ msgstr ""
msgid "no network card found"
msgstr "сеткавая карта не знойдзена"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Настройка сеткi"
@@ -6249,15 +6319,15 @@ msgstr ""
"напрыклад ``mybox.mylab.myco.com''.\n"
"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Iмя машыны"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Канфiгурацыя сеткi"
@@ -6299,8 +6369,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Настройка ISDN"
@@ -6339,23 +6409,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Якi пратакол вы жадаеце выкарыстоўваць?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Якi тып карты вы маеце?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Не вядома"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6369,19 +6444,19 @@ msgstr ""
"\n"
"Калi вы маеце PCMCIA карту, вы павiнны ведаць irq i io вашай карты.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Адмянiць"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Працягнуць"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Якая ў вас ISDN карта?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6389,7 +6464,7 @@ msgstr ""
"Вызначана ISDN PCI карта, але невядомы яе тып. Калi ласка, пазначце PCI "
"карту на наступным экране."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Карта ISDN PCI не знойдзена. Калi ласка, пазначце на наступным экране."
@@ -6443,7 +6518,7 @@ msgstr "Першы сервер DNS"
msgid "Second DNS Server (optional)"
msgstr "Другi сервер DNS:"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6451,7 +6526,7 @@ msgstr ""
"\n"
"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
@@ -6460,12 +6535,12 @@ msgstr ""
"\n"
"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
@@ -6474,38 +6549,38 @@ msgstr ""
"\n"
"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Iмя злучэння"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Настройка ISDN"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Настройка сеткi"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6519,12 +6594,12 @@ msgstr ""
"\n"
"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Канфiгурацыя сеткi"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6532,7 +6607,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6540,105 +6615,105 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Абярыце асноўнага карыстальнiка:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
#, fuzzy
msgid "Expert Mode"
msgstr "Эксперт"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Вызначэнне прыладаў..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Дубляванне пункту манцiравання %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Настройка ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Размеркаванне"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Сеткавы iнтэрфейс"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "Cable connection"
msgstr "Злучэнне прынтэру"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Злучэнне прынтэру"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "LAN connection"
msgstr "Размеркаванне"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Абярыце iнструмент, якi жадаеце скарыстаць"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Сумеснае Iнтэрнэт-злучэнне"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
#, fuzzy
msgid "Network configuration"
msgstr "Канфiгурацыя сеткi"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6646,27 +6721,27 @@ msgid ""
"%s"
msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6674,7 +6749,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6684,43 +6759,43 @@ msgstr ""
"Кожны пункт павiнен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
"натацыi (напрыклад, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Настройка сеткавай прылады %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Сервер XFree86: %s\n"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP адрас"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Маска сеткi"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Аўтаматычны IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Стварыць загр. дыск"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6732,42 +6807,53 @@ msgstr ""
"напрыклад ``mybox.mylab.myco.com''.\n"
"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS сервер"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Прылада-шлюз"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Настройка proxy кэшуючых сервераў"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy павiнен быць http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy павiнен быць ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy павiнен быць http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8166,7 +8252,7 @@ msgstr "Адлучэнне ад сеткi"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8679,11 +8765,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Proxy павiнен быць http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8733,6 +8814,43 @@ msgstr "mkraid не працаздольны (можа raid прылады адсутнiчаюць?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Недастаткова раздзелаў для RAID узроўня %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Настройкi ўзроўня бяспекi"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Настройкi ўзроўня бяспекi"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Опцыi аддаленага прынтэру lpd"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (змоўчанне %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Настройкi ўзроўня бяспекi"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Падрыхтоўка ўсталяваньня"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9031,7 +9149,7 @@ msgstr "цiкава"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -9128,7 +9246,7 @@ msgstr "Далучэнне да Iнтэрнэту"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9175,7 +9293,7 @@ msgstr "Сеткавы iнтэрфейс"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9200,7 +9318,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9216,7 +9334,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9231,7 +9349,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9280,8 +9398,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9318,11 +9436,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Усталяванне пакету %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Калi ласка, выйдзiце, а потым скарыстайце Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Калi ласка, перайдзiце ў %s для актывацыi змяненняў"
@@ -9370,16 +9488,6 @@ msgstr "Дадаць карыстальнiка"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9432,52 +9540,67 @@ msgstr "Дадаць карыстальнiка"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Настройка IDE"
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Заканчэнне настройкi"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "Настройка X Window"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Дыскавод недаступны"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9601,13 +9724,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Праверка партоў"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9616,41 +9739,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Няма паролю"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Памылка адкрыцця %s для запiсу: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9661,68 +9784,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9730,926 +9853,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Памылка чытання файлу %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Выбар групы пакетаў"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Выдалiць чаргу друку"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Выдалiць Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Паспрабуйце яшчэ раз"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Паспрабуйце яшчэ раз"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Няма паролю"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Калi ласка, абярыце тып клавiятуры."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Абярыце файл"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Сетка:"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Тып: "
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Чакайце"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "З колам"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "З колам"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Опцыi модулю:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
#, fuzzy
msgid "across Network"
msgstr "Сетка:"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
#, fuzzy
msgid "on Tape Device"
msgstr "Порт прынтэру"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Настр. файлавых сiстэмаў"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Мыш: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Опцыi"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
#, fuzzy
msgid "\t-Tape \n"
msgstr "Тып: "
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Да якога паслядоўнага порту далучаны мадэм?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Размеркаванне"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Выбар тыпу злучэння прынтэру"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Аднаўленне з дыскеты"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Іншыя"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Усталяванне сiстэмы"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Выдалiць чаргу друку"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Аднаўленне з дыскеты"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Дадатковая таблiца раздзелаў"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Пераканфiгураваць лакальную сетку"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Iмя машыны"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Пароль"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Iмя машыны"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Па выбару"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Дадатковая таблiца раздзелаў"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Стартавае меню"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Наступныя пакеты будуць даданы да сiстэмы"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Захаванне ў файл"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Настройка"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Заканчэнне настройкi"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Настр. файлавых сiстэмаў"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10681,7 +10806,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10690,7 +10815,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10731,7 +10856,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10759,17 +10884,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10786,7 +10911,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10826,7 +10951,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10837,7 +10962,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10850,7 +10975,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10932,8 +11057,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Кансольныя інструментальныя сродкі"
@@ -11010,28 +11135,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Порт"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Заканчэнне ўсталявання"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
@@ -11140,11 +11265,6 @@ msgstr "Майстар стварэння..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Праверка параметраў настройкi"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -11268,7 +11388,7 @@ msgstr "Опцыi модулю:"
msgid "Size"
msgstr "Памер: %s"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
#, fuzzy
msgid "drakfloppy"
msgstr "Аднаўленне з дыскеты"
@@ -11342,24 +11462,24 @@ msgstr ""
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Зрабiць неактыўным сеткавае злучэнне"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11835,156 +11955,156 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Сумеснае Iнтэрнэт-злучэнне"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Працоўная група"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Раздзел %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Знiшчыць"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
#, fuzzy
msgid "edit"
msgstr "Сярэднi"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Зроблена"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Дадаць карыстальнiка"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Iмя друкаркi"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Выдалiць чаргу друку"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Прыняць карыстальнiка"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Версiя: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Порт"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Асабiсты выбар пакетаў"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Працоўная група"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Размеркаванне"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11996,137 +12116,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Настройка пасля ўсталявання"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Памеры экрану"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Абярыце дзеянне"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Iмя для размеркаванага рэсурсу"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Настройка пасля ўсталявання"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Выхад"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Усталяванне сiстэмы"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Настройка службаў"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Вiртуальная файлавая сiстэма (loopback)"
+msgid "Preview"
+msgstr "прылада"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "прылада"
+msgid "Save theme"
+msgstr "Усталяванне сiстэмы"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Абярыце манiтор"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Злучэнне прынтэру"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "URI прынтэру"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Вызначэнне прыладаў..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12267,6 +12397,12 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
@@ -12301,11 +12437,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Немагчыма запусціць live upgrade !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12584,16 +12720,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12670,7 +12803,7 @@ msgstr "Усталяванне сiстэмы"
msgid "Exit install"
msgstr "Заканчэнне ўсталявання"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12934,6 +13067,21 @@ msgstr "Мультымедыя - Стварэнне CD"
msgid "Scientific Workstation"
msgstr "Навуковыя прыкладанні"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Настройка пасля ўсталявання"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Вiртуальная файлавая сiстэма (loopback)"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy павiнен быць ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Выхад"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (не працуе пры старых версiях BIOS)"
@@ -13021,9 +13169,6 @@ msgstr "Навуковыя прыкладанні"
#~ msgid "Test again"
#~ msgstr "Праверыць яшчэ раз"
-#~ msgid "Setting security level"
-#~ msgstr "Настройкi ўзроўня бяспекi"
-
#~ msgid "Select a graphics card"
#~ msgstr "Абярыце вiдэакарту"
@@ -13176,9 +13321,6 @@ msgstr "Навуковыя прыкладанні"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Невызначанасць (%s), будзьце дакладныя\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (змоўчанне %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Ваш выбар? (змоўчанне %s. Увядзiце `none' пры адсутнасцi) "
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index e7d19aece..5b0c95b11 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-02-28 20:56+0200\n"
"Last-Translator: Bozhan Boiadzhiev <bozhan@plov.omega.bg>\n"
"Language-Team: Bulgarian\n"
@@ -89,24 +89,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr "Използвай разширението Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Настройка само на карта \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s с хардуерно 3D ускорение"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Картата ви се поддържа от XFree %s, който може да има по-добра поддръжка на "
"2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Картата ви може да има поддръжка на хардуерно 3D ускорение в XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s с ЕКСПЕРИМЕНТАЛНO хардуерно 3D ускорение"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"Картата ви се поддържа от XFree %s, който може да има по-добра поддръжка на "
"2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,12 +151,12 @@ msgstr ""
"ОТБЕЛЕЖЕТЕ, ЧЕ ТОВА Е ЕКСПЕРИМЕНТАЛНА ПОДДРЪЖКА И КОМПЮТЪРЪТ ВИ МОЖЕ ДА "
"ЗАБИЕ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (инсталация графичен драйвер)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Клиентска"
@@ -177,32 +177,32 @@ msgstr "Разделителна способност"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Опции"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Изход"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -301,25 +301,25 @@ msgstr "Изберете разделителна способност и дълбочина на цветовете"
msgid "Graphics card: %s"
msgstr "Графична карта: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Отказ"
@@ -397,11 +397,11 @@ msgstr "XFree86 сървър: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 драйвер: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X при стартиране на системата"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -410,7 +410,7 @@ msgstr ""
"Kомпютъра ви може автоматично, да влезе в X при стартиране.\n"
"Искате ли X да се стартира, когато рестартирате системата?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Какъв е типът на ISDN връзката ?"
@@ -495,7 +495,7 @@ msgstr "Компактен"
msgid "compact"
msgstr "компактен"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Видео режим"
@@ -503,17 +503,17 @@ msgstr "Видео режим"
msgid "Delay before booting default image"
msgstr "Забавяне преди стартирането на default дяла"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Парола"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Парола (отново)"
@@ -547,14 +547,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Опцията ``Ограничи опциите от командния ред'' е безполезна без парола"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Моля, опитайте отново"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Паролите на съвпадат"
@@ -591,7 +591,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -599,156 +599,156 @@ msgstr ""
"Това са различните записи.\n"
"Можете да добавите още или да промените съществуващите."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Добави"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Готово"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Модифицирай"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Какъв тип информация искате да прибавите"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Друга ОС (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Друга ОС (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Друга ОС (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Образ"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Главен"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Допълване"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Четене-запис"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Таблица"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Опасен"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Етикет"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "По подразбиране"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-големина"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Без графика"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Премахни запис"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Празен етикет не е разрешен"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Трябва да имате swap-дял"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Този етикет вече се използва"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Намерени са %s %s интерфейси"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Имате ли друг(и) ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Имате ли някакъв %s интерфейс?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Не"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Да"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Виж хардуерната информация"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Инсталиране на драйвер за %s платка %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(модул %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -759,17 +759,17 @@ msgstr ""
"Опциите са във формат ``име=стойност име2=стойност2 ...''.\n"
"Например: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Опции на модула:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Кой %s драйвер да пробвам ?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -788,15 +788,15 @@ msgstr ""
"от която се нуждае ? По принцип това може да забие компютъра ви, но няма да "
"го повреди."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Автоматично засичане"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Задай опции"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -805,63 +805,63 @@ msgstr ""
"Зареждането на модула %s не успя.\n"
"Искате ли да опитате отново с други параметри ?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(вече прибавих %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Тази парола е прекалено проста"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Моля, задайте потребителско име"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Потребителското име може да включва само малки букви, номера, `-' и `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Това потребителско име е вече добавено"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Това потребителско име е вече добавено"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Добави потребител"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -870,32 +870,32 @@ msgstr ""
"Въведете потребител\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Приеми потребител"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Истинско име"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Потребителско име"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Шел"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Икона"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -904,59 +904,59 @@ msgstr ""
"потребител.\n"
"Искате ли тази възможност ?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Изберете подразбиращ се потребител :"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Изберете Windows Manager за стартиране:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Моля, изберете използван език."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Можете да изберете други езици, които ще бъдат налице слединсталацията"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Всички"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Добавяне на потребител"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "Поделяне на файлове"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Този пакет трябва да бъде обновен\n"
"Сигурни ли сте, че искате да го изключите ?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -965,42 +965,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Добре дошли при Cracker-ите"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Лошо"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Стандартна"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Високо"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Високо"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Параноично"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1010,7 +1010,7 @@ msgstr ""
"употреба, но е по-чувствително: не трябва да бъде използвана на машини\n"
"свързани с други или по Интернет. Няма достъп с пароли."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1018,7 +1018,7 @@ msgstr ""
"Паролата сега е включена, но използването като мрежов компютър не е "
"препоръчително."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1028,13 +1028,13 @@ msgstr ""
"използван да се свързва към Интернет като клиент. Има проверки на "
"сигурността. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1049,7 +1049,7 @@ msgstr ""
"Сигурността сега е достатъчно голяма да се използва системата като\n"
"сървър приемащ връзки от много клиенти. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1058,36 +1058,36 @@ msgstr ""
"Избираме 4-то ниво, но системата е напълно затворена.\n"
"Нивото на сигурност е на максимума си."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Опции"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Изберете ниво на сигурност"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Ниво на сигурност"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Използвайте libsafe за сървъри"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Библиотека, която осигурява защита от aтаки с препълване на буфер и форматни "
"стрингове."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1100,7 +1100,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1125,7 +1125,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1139,7 +1139,7 @@ msgstr "Welcome to GRUB the operating system chooser!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
@@ -1154,7 +1154,7 @@ msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1168,7 +1168,7 @@ msgstr "Press enter to boot the selected OS, 'e' to edit the"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1182,33 +1182,33 @@ msgstr "commands before booting, or 'c' for a command-line."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "няма достатъчно място за /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Десктоп"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Стартово Меню"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Не можете да инсталирате bootloader на дяла %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "няма въведена помощ още.\n"
@@ -1260,106 +1260,106 @@ msgstr "Режим на Lilo/grub"
msgid "Yaboot mode"
msgstr "Режим на Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Инсталиране на системата"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Създай нов дял"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Грешка"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Копиране на %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Без графика"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Избор на клас инсталация"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1368,22 +1368,22 @@ msgstr ""
"В момента използвате %s като програма за стартиране.\n"
"Цъкнете на Настрой, за да стартирате установяващия магьосник."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Настрой"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Запази избор на пакети"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1392,44 +1392,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Системен режим"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Пусни X-Window системата при стартиране"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Не, не искам autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Да, искам autologin с това (потребител, десктоп)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "не мога да отворя /etc/inittab за четене: %s"
@@ -1534,53 +1534,61 @@ msgstr "серийна"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "нов"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Демонтирай"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Монтирай"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Сървър"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Място на монтиране"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Моля, пробвайте мишката си"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Сървър"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Място на монтиране: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Опции: %s"
@@ -1669,7 +1677,7 @@ msgstr "Празен"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Друга"
@@ -1812,7 +1820,7 @@ msgstr ""
"Резервната таблица на дяловете не е със същата големина\n"
"Да продължа ли все пак ?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Предупреждение"
@@ -2371,7 +2379,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Потребителско име"
@@ -2386,23 +2394,23 @@ msgstr "NIS домейн"
msgid "Search servers"
msgstr "DNS сървър"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s форматиране от %s провалено"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "не знам как да форматирам %s в тип %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "грешка при демонтирането на %s: %s"
@@ -2489,47 +2497,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Грешка при отваряне на %s за запис: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Настройка"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Драйвер"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Помощ"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Моля, почакайте ... Прилагане на настройките"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Моля изчакайте"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Неизвестен модел"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2655,7 +2727,8 @@ msgid "/_Quit"
msgstr "Изход"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Помощ"
@@ -2675,76 +2748,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Информирай за бъг"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Помощ/_Относно..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Автоматично засичане"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Засичане на дисковете"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Виж хардуерната информация"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Покажи информацията"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Настройка на мишка"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "засечен на порт %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Моля изчакайте"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Изтриване на принтера \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d секунди"
@@ -4402,7 +4476,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4426,7 +4500,7 @@ msgstr ""
"\n"
"Наистина ли искате да инсталирате тези сървъри ?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4435,20 +4509,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Не можете да използвате broadcast без NIS домейн"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Сложете FAT форматирана дискета в устройство %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Тази дискета не е форматирана на FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4456,12 +4530,12 @@ msgstr ""
"За да използвате запазен избор на пакети, стартирайте инсталацията с ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Грешка при четенето на файла %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4705,7 +4779,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Добре дошли в %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Няма флопи устройство"
@@ -4736,11 +4810,11 @@ msgstr "Клас инсталация"
msgid "Please choose one of the following classes of installation:"
msgstr "Моля, изберете един от следните класове на инсталация:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Избор на група пакети"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Избиране на пакети един по един"
@@ -4818,7 +4892,7 @@ msgstr "Покажи автоматично отбелязаните пакети"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Инсталирай"
@@ -4838,7 +4912,7 @@ msgstr "Миминална инсталация"
msgid "Choose the packages you want to install"
msgstr "Изберете пакетите, които искате да инсталирате"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Инсталирам"
@@ -4865,17 +4939,17 @@ msgid "Installing package %s"
msgstr "Инсталиране на пакета %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Приеми"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Откажи"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4892,16 +4966,16 @@ msgstr ""
"ROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Да продължа ли все пак ?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Появи се грешка при поръчването на пакетите:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Появи се грешка при инсталиране на пакетите:"
@@ -5027,7 +5101,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5223,7 +5297,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Клавиатура"
@@ -5435,31 +5509,31 @@ msgstr "Сложете дискета съдържаща избор на пакети"
msgid "Selected size is larger than available space"
msgstr "Избраната големина е по-голяма от достъпното пространство"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Изберете пакети за инсталиране"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Един момент"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5469,16 +5543,16 @@ msgstr ""
"Ако нямате нито едно от тези CD-та, натиснете Отмяна.\n"
"Ако ви липсват някои CD-та, махнете ги, и натиснете Ok. "
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM озаглавен \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Подготвям инсталацията"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5487,21 +5561,21 @@ msgstr ""
"Инсталирам пакет %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "След инсталационна настройка"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Сложете стартиращата дискета в устройство %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Сложете дискета за обновяване на модули в устройство %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5567,7 +5641,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5579,157 +5653,157 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Изберете огледален сървър,от който да получите пакетите"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Коя е времевата ви зона ?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Хадруерният ви часовник е настроен по GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматична синхронизация на времето (използва NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP сървър"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Отдалечен CUPS сървър"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Няма принтер"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Имате ли друг(и) ?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Обобщение"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Мишка"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Часова зона"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Принтер"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN карта"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Звукова карта"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV карта"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS домейн"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Локални файлове"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Въведете парола за root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Без парола"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Паролата е прекалено проста (трябва да бъде дълга поне %d символа)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Идентификация"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP ауторизация"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Базов dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP сървър"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS ауторизация"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS домейн"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS сървър"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5745,21 +5819,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP ауторизация"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Име на домейна"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5788,19 +5862,19 @@ msgstr ""
"Ако искате да създадете bootdisk за вашата система, поставете дискета в\n"
"първото устройство и натиснете \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Първо флопи устройство"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Второ флопи устройство"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Прескочи"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5826,7 +5900,7 @@ msgstr ""
"случаи на срив. Искате ли да създам bootdisk за системата ви ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5835,28 +5909,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Съжалявам няма флопи"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Изберете флопи драйв,където да направите стартираща дискета"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Сложете дискета в устройство %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Създаване на стартираща дискета"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Подготовка на bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5868,11 +5942,11 @@ msgstr ""
"Инсталацията ще продължи, но ще трябва\n"
"да иползвате BootX, за да стартирате машината си"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Искате ли да използвате aboot ?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5880,15 +5954,15 @@ msgstr ""
"Грешка при инсталиране на aboot, \n"
"да се опитам ли да продължа инсталацията дори, ако това унижтожи първия дял ?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Инсталиране на bootloader"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Инсталацията на bootloader провалена. Появи се следната грешка:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5905,17 +5979,17 @@ msgstr ""
" След което напишете: shut-down\n"
"При следващото рестартиране би трябвало да видете подсказката."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Сложете празна дискета в устройство %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Подготвям дискета с автоматична инсталация"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5925,7 +5999,7 @@ msgstr ""
"\n"
"Наистина ли искате да излезете сега ?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5957,15 +6031,15 @@ msgstr ""
"Информация за настройване на системата ви можете да намерите в\n"
"слединсталационната глава от Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Подготви дискета за автоматична инсталация"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5979,15 +6053,15 @@ msgstr ""
"\n"
"Може би искате да повторите инсталацията.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Автоматизиран"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Повтори"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Запази избор на пакети"
@@ -6023,14 +6097,14 @@ msgstr "Напредничав"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Предишен"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Текст"
@@ -6478,7 +6552,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "\"Омагьосан кръг\" от монтирания: %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Първо премахни логичните дялово\n"
@@ -6616,15 +6690,15 @@ msgstr "няма"
msgid "No mouse"
msgstr "Без мишка"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Моля, пробвайте мишката си"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "За да активирате мишката си,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "БУТНЕТЕ ТОПЧЕТО !"
@@ -6661,11 +6735,11 @@ msgstr "Изчисти дървото"
msgid "Toggle between flat and group sorted"
msgstr "Превключване между нормално и сортиране по групи"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Свържи се към Интернет"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6675,23 +6749,19 @@ msgstr ""
"Някои връзки използват PPTP, а maлко използват DHCP.\n"
"Ако не знаете, изберете 'използвай PPPOE'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "използвай DHCP"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "използвай PPPOE"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "използвай PPPTP"
@@ -6792,7 +6862,7 @@ msgstr "Моля, изберете кой мрежов адаптер да използвам за връзка към Интернет"
msgid "no network card found"
msgstr "не е открита мрежова карта"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Настойка на мрежата"
@@ -6808,15 +6878,15 @@ msgstr ""
"Host името трябва да буде напълно квалифицирано име,\n"
"като ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Име на хост:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Магьосник за настройка на мрежата"
@@ -6863,8 +6933,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Стара настройка (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Настройка на IDSN"
@@ -6900,23 +6970,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Какъв протокол желаете да промените ?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Какъв тип карта имате ?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Не знам"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6929,19 +7004,19 @@ msgstr ""
"\n"
"Ако имате PCMCIA карта, ще трябва да знаете IRC и IO на картата си.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Отказ"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Нататък"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Коя е ISDN картата ви ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6949,7 +7024,7 @@ msgstr ""
"Открита е ISDN PCI карта, но с непознат тип. Моля изберете някоя PCI карта "
"от следващият екран."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Не е намерена ISDN PCI карта. Моля изберете от следващият екран."
@@ -7001,7 +7076,7 @@ msgstr "Първи DNS сървър (по избор)"
msgid "Second DNS Server (optional)"
msgstr "Втори DNS сървър (по избор)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7009,7 +7084,7 @@ msgstr ""
"\n"
"Можете да се отвържете или да пренастроите връзката."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7017,11 +7092,11 @@ msgstr ""
"\n"
"Можете да пренастроите връзката."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "В момента сте свързани към Интернет"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7029,33 +7104,33 @@ msgstr ""
"\n"
"Можете да се свържете към Интернет или да пренастроите връзката."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "В момента не сте свързани към Интернет"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Свържи"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Отвържи"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "В момента настройвам мрежата"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Интернет връзка и настройка"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Сега ще настроим %s връзката."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7073,12 +7148,12 @@ msgstr ""
"\n"
"Натиснете OK, за да продължите."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Настройка на мрежата"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7089,7 +7164,7 @@ msgstr ""
"Цъкнете Ok, за да запазите настройката, или Отмяна, за да пренастоите "
"Интернет и мрежовата си връзка.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7101,72 +7176,72 @@ msgstr ""
"Вие сте на път да настроите Интернет/мрежовата си връзка.\n"
"Ако не искате да използвате автоматично засичане, изключете кутийката.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Изберете профил за настройка"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Използвай автоматично засичане"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Разширени функиции"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Откриване на устройства ..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Обикновена модемна връзка"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "засечен на порт %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN връзка"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "засечена %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL връзка"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "засечен на интерфейс %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Кабелна връзка"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "засечена е кабелна връзка"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN връзка"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet карти засечени"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Изберете връзката, който искате да използвате"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7176,23 +7251,23 @@ msgstr ""
"Изберете този, който искате да използвате.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Интернет връзка"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Искате ли да стартирате връзката си при зареждане ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Настройка на мрежата"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Мрежата трябва да бъде рестартирана"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7203,7 +7278,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7213,7 +7288,7 @@ msgstr ""
"\n"
"Настройките ще бъдат приложени към системата ви.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7221,14 +7296,14 @@ msgstr ""
"След като стане това, препоръчваме ви да рестартирате X\n"
"средата си, за да избегнете проблеми със смяната името на хоста."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7239,7 +7314,7 @@ msgstr ""
"Просто приемете, за да оставите устройството настроено.\n"
"Поправката на полетата по-долу ще презапише тази настройка."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7249,43 +7324,43 @@ msgstr ""
"Всяко устройство трябва да бъде въведено като IP адрес\n"
"с точково-десетично означение (например, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Настройка на мрежовото устройство %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (драйвер %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP адрес"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Мрежова маска"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Автоматичен IP адрес"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Пуснат при стартиране"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7297,42 +7372,53 @@ msgstr ""
"като ``mybox.mylab.myco.com''.\n"
"Можете също да въведете IP адреса на Вашия gateway, ако имате такъв"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS сървър"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway устройство"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Настройка на proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Проследяване на ID на мрежовата карта (полезно при лаптопи)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy-сървъра трябва да е http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-сървъра трябва да е ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL трябва да е започва с 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8779,7 +8865,7 @@ msgstr "Печатане на принтер \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9313,11 +9399,6 @@ msgstr ""
"Моля, попълнете информацията за FTP proxy.\n"
"Оставете празно, ако не искате FTP proxy."
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URL трябва да е започва с 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9365,6 +9446,43 @@ msgstr "mkraid пропадна (може би raidtools липсват ?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Няма достатъчно дялове за RAID ниво %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Ниво на сигурност"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Ниво на сигурност"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Отдалечена администрация"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (По подразбиране)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Изберете ниво на сигурност"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Моля, изчакайте, подготвяне на инсталацията"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Пусни ALSA (Advanced Linux Sound Architecture) звуковата система"
@@ -9671,7 +9789,7 @@ msgstr "Интернет"
msgid "File sharing"
msgstr "Поделяне на файлове"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Система"
@@ -9763,7 +9881,7 @@ msgstr "Свържи се към Интернет"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9810,7 +9928,7 @@ msgstr "Мрежов интерфейс"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9835,7 +9953,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9851,7 +9969,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9866,7 +9984,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9915,8 +10033,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9952,11 +10070,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Инсталиране на пакети ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Моля излезте от сесията и използвайте Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Моля влезте отново в %s, за да активирате промените"
@@ -10004,17 +10122,6 @@ msgstr "Добави потребител"
msgid "Add/Del Clients"
msgstr "DHCP клиент"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Помощ"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10067,53 +10174,68 @@ msgstr "Добави потребител"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP клиент"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Настройка ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Настройка на локална мрежа"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "пренастройка"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Сложете стартиращата дискета в устройство %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Няма флопи устройство"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10238,13 +10360,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Тестови страници"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10253,41 +10375,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Без парола"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Не мога да отворя %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10298,68 +10420,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10367,926 +10489,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Грешка при четенето на файла %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Избор на пакети"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Изтриване на опашката"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Премахни Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Потребителско име"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Прехвърли"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Моля, пробвайте мишката си"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Моля, опитайте отново"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Моля, опитайте отново"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "още веднъж парола"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Моля, изберете подреждане на клавиатурата."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Моля, цъкнете на носителя"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Моля, цъкнете на носителя"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Моля, цъкнете на носителя"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Прехвърли"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Моля, цъкнете на носителя"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Моля, цъкнете на носителя"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Изберете файл"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Моля, пробвайте мишката си"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Мрежов интерфейс"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Вид"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Потребителско име"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Моля, изберете използван език."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Един момент"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Опции на модула:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Настройка на мрежата"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Файлови системи"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Устройство на мишката: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Опции"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Моля, изберете сериен порт към който свързан модемът ви."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Настройка на мрежата"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Моля, изберете тип на мишката."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Моля, пробвайте мишката си"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN връзка"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Изберете връзка към принтера"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Възстанови от дискета"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Моля, изберете тип на мишката."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Друга"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Инсталиране на системата"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Моля, изберете тип на мишката."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Изтриване на опашката"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Възстанови от дискета"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Възстанови таблицата с дяловете"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Име на хост:"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Парола"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Потребителско име"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Име на хост:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Клиентска"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Възстанови таблицата с дяловете"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Предишен"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Състояние"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Следните пакети ще бъдат инсталирани"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Моля, изберете използван език."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Моля, изберете използван език."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Моля, изберете използван език."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Запази във файл"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Настройка на мрежата"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Настройка на мрежата"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Настройка"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Настройка на локална мрежа"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Файлови системи"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11318,7 +11442,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11327,7 +11451,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11368,7 +11492,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11396,17 +11520,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11423,7 +11547,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11463,7 +11587,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11474,7 +11598,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11487,7 +11611,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11569,8 +11693,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Конзолни инструменти"
@@ -11646,28 +11770,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "порт"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Изход от инсталационната програма"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Можете да изберете други езици, които ще бъдат налице слединсталацията"
@@ -11768,10 +11892,6 @@ msgstr "Магьосник..."
msgid "Apply"
msgstr "Приложи"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Моля, почакайте ... Прилагане на настройките"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Свързан"
@@ -11889,7 +12009,7 @@ msgstr "Име на модул"
msgid "Size"
msgstr "Големина"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11954,12 +12074,12 @@ msgstr "Резултат"
msgid "Build the disk"
msgstr "Създай дискът"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Проверете имате ли дискета в устройството %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11968,12 +12088,12 @@ msgstr ""
"Няма дискета в устойството %s.\n"
"Моля поставете дискета."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Не може да се работи с: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12460,157 +12580,157 @@ msgstr ""
"\n"
"Цъкнете ``Настрой'', ако искате да стартиране установяващия магьосник."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Работна група"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "дял %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Потребителско име"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Изтрий"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Готово"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Добави модула"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Добави принтер"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Изтриване на опашката"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Приеми потребител"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Версия: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Порт"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Използвай автоматично засичане"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Използвай автоматично засичане"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Запази избор на пакети"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Потребителско име"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Работна група"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Не свързан"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12622,137 +12742,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "съдаване на стартираща дискета"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Разделителна способност"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Изберете файл"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Общо име"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "След инсталационна настройка"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Изход"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Инсталиране на системата"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Настройка на услугите"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "устройство"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "устройство"
+msgid "Save theme"
+msgstr "Инсталиране на системата"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Изберете монитор"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Избор модел на принтера"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Въведете URI на печатащо устройство"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Засичане на устройства ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12893,6 +13023,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "употреба: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "употреба: keyboarddrake [--expert] [keyboard]\n"
@@ -12923,11 +13060,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Не мога да пусна обновяването !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "логдрейк"
@@ -13211,16 +13348,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13296,7 +13430,7 @@ msgstr "Инсталиране на системата"
msgid "Exit install"
msgstr "Изход от инсталационната програма"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13543,6 +13677,21 @@ msgstr "Мултимедия - опичане на CD"
msgid "Scientific Workstation"
msgstr "Научна работна станция"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "След инсталационна настройка"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy-сървъра трябва да е ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Изход"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -13831,9 +13980,6 @@ msgstr "Научна работна станция"
#~ msgid "Test again"
#~ msgstr "Тествай отново"
-#~ msgid "Setting security level"
-#~ msgstr "Изберете ниво на сигурност"
-
#~ msgid "Select a graphics card"
#~ msgstr "Изберете графична карта"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index e778cf6b3..f8d39e598 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po